/* ===========================================
   KABINA WÓZKA - Forklift Cabins Website
   Producent kabin do wózków widłowych
   =========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    /* Primary Colors */
    --primary-color: #ff6b00;
    --primary-dark: #e55a00;
    --primary-light: #ff8533;

    /* Secondary Colors */
    --secondary-color: #f5f5f5;
    --secondary-dark: #FFFFFF;
    --secondary-light: #ffffff;

    /* Accent Colors */
    --accent-color: #ff8c00;
    --accent-hover: #ff9500;

    /* Text Colors */
    --text-primary: #1a1a2e;
    --text-secondary: rgba(26, 26, 46, 0.85);
    --text-tertiary: rgba(26, 26, 46, 0.65);
    --text-dark: #1a1a2e;
    --text-light: #ffffff;

    /* Background Colors */
    --bg-dark: #ffffff;
    --bg-card: #f8f9fa;
    --bg-card-hover: #f0f1f2;
    --bg-light: #ffffff;

    /* Border & Shadow */
    --border-color: rgba(26, 26, 46, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.1);
    --shadow-orange: 0 10px 40px rgba(255, 107, 0, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.85) 100%);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-full: 50px;
}

/* ============================================
   RESET & BASE STYLES
============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
    background-color: #ffb700;
    color: #1a1a2e;
    height: 36px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.top-bar-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left span,
.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1a1a2e;
    text-decoration: none;
}

.top-bar i {
    font-size: 14px;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    /* backdrop-filter: blur(10px); removed for pure white */
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 35px;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 75px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-left: 10px;
}

.logo-text span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}



.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* .header-contact usunięte */

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.header-phone i {
    color: var(--primary-color);
    font-size: 18px;
}

.nav-menu .btn-quote,
.btn-quote {
    background: var(--gradient-primary);
    color: #fff !important;
    /* Nadpisuje kolor linków w menu */
    padding: 8px 16px;
    /* Mniejszy padding */
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 11px;
    /* Mniejszy font */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-normal);
    /* Reset stylów linku menu */
    position: static;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.4);
    color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.lang-switcher img {
    width: 43px;
    height: 29px;
    border-radius: 0;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s;
    border: 1.6px solid #f2b609;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.lang-switcher img:hover {
    opacity: 0.85;
    box-shadow: 0 0 5px rgba(242, 182, 9, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-switcher img.active {
    opacity: 1;
    box-shadow: 0 0 5px rgba(242, 182, 9, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 3px solid #ff6b00;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 142px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid var(--primary-color);
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.5);
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--text-dark);
}

/* Hero Light Overlay */
.hero-light .hero-overlay-light {
    background: rgba(0, 0, 0, 0.5);
}

.hero-light .hero-badge,
.hero-light .hero-title,
.hero-light .hero-subtitle {
    color: #fff;
}

.hero-light .hero-title span {
    color: var(--primary-color);
}

/* Yellow CTA Bar */
.cta-bar-yellow {
    background: #f5c518;
    padding: 40px 0;
}

.cta-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-bar-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.cta-bar-text p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.btn-cta-dark {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-cta-dark:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Offer Tiles Grid */
.offer-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer-tile {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.offer-tile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.offer-tile-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.offer-tile-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.offer-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px;
    opacity: 0;
    transition: var(--transition-normal);
}

.offer-tile:hover .offer-tile-overlay {
    opacity: 1;
}

.offer-tile-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

/* Larger Feature Icons */
.feature-box-icon-large {
    width: 100px !important;
    height: 100px !important;
    padding: 0 !important;
    background: transparent !important;
}

@media (max-width: 991px) {
    .cta-bar-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 600px) {
    .offer-tiles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .cta-bar-text h3 {
        font-size: 22px;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* ============================================
   SECTION STYLES
============================================ */
.section {
    padding: 100px 0;
}

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

.section-light {
    background: var(--secondary-color);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: none;
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-orange);
}

.about-image-badge .number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 22px;
}

.feature-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION - Nasze atuty
============================================ */
.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.features-title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.feature-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.feature-box-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: transparent;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.feature-box-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-box-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-box-text span {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.4;
}

.feature-box-text .feature-highlight {
    color: #1a1a2e;
    font-weight: 600;
}

.features-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-features {
    display: inline-block;
    background: #fff;
    color: var(--text-primary);
    padding: 15px 35px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--text-primary);
    transition: var(--transition-normal);
}

.btn-features:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Features Responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-main-title {
        font-size: 28px;
    }
}

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

    .feature-box {
        padding: 15px 20px;
    }

    .feature-box-icon {
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   OFFER SECTION
============================================ */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
}

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

.offer-card-image {
    height: 200px;
    overflow: hidden;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.offer-card:hover .offer-card-image img {
    transform: scale(1.1);
}

.offer-card-content {
    padding: 25px;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.offer-card p {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.offer-card .btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.offer-card .btn-link i {
    transition: var(--transition-normal);
}

.offer-card:hover .btn-link i {
    transform: translateX(5px);
}

/* ============================================
   PROCESS SECTION - New Grid Layout
============================================ */
#process {
    background-image: url('../images/bg/bg-parallax-1024x447.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

#process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Dark overlay */
    z-index: 1;
}

#process .container {
    position: relative;
    z-index: 2;
}

.process-header {
    margin-bottom: 50px;
    text-align: center;
}

.process-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
}

.process-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    flex-shrink: 0;
    background: #ffb700;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-icon .step-label {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: lowercase;
    line-height: 1;
}

.process-icon .step-number {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.process-card-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-tertiary);
    text-align: justify;
}

/* Process Section Responsive */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

    .process-main-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-card {
        flex-direction: row;
        gap: 20px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }

    .process-main-title {
        font-size: 24px;
    }
}

/* Legacy process styles (keep for other pages) */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child) .process-number::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--border-color);
    transform: translateX(-50%);
}

.process-content {
    flex: 1;
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.process-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.process-content p {
    font-size: 15px;
    color: var(--text-tertiary);
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-table {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background: rgba(255, 107, 0, 0.1);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.pricing-table td {
    color: var(--text-secondary);
    font-size: 18px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: rgba(255, 107, 0, 0.05);
}

.price-value {
    font-weight: 700;
    color: #000;
    font-size: 20px;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 32px;
}

/* ============================================
   BRANDS SECTION
============================================ */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.brand-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-orange);
}

.brand-item img {
    max-width: 80%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.05);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-grid {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 24px;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-text p,
.contact-text a {
    font-size: 16px;
    color: var(--text-tertiary);
}

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

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-normal);
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--secondary-dark);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-tertiary);
    font-size: 15px;
    transition: var(--transition-normal);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact span,
.footer-contact span a {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ============================================
   CTA PROMO SECTION
============================================ */
.cta-promo-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cta-promo-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    padding: 0 20px;
}

.cta-promo-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-promo-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-promo {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.btn-promo:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    background: url('../images/gallery/kabiny-do-wozkow-widlowych-producent-12-768x1024.webp') center center/cover no-repeat fixed;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta-content .btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb-section {
    background: var(--secondary-color);
    padding: 120px 0 60px;
    margin-top: 142px;
}

.breadcrumb-content {
    text-align: center;
}

.breadcrumb-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--text-tertiary);
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav span {
    color: var(--primary-color);
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .header {
        top: 0;
    }

    .hero,
    .breadcrumb-section {
        margin-top: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 106px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: var(--transition-normal);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }

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

    .menu-toggle {
        display: flex;
    }

    .header-contact {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

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

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

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

    .pricing-table th,
    .pricing-table td {
        padding: 15px;
        font-size: 14px;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BRANDS CAROUSEL
============================================ */
.brands-carousel {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.brands-track {
    display: flex;
    gap: 30px;
    animation: scroll-brands 30s linear infinite;
}

.brands-track .brand-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: var(--transition-normal);
}

.brands-track .brand-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.brands-track .brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition-normal);
}

.brands-track .brand-item:hover img {
    filter: none;
    opacity: 1;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 12 - 30px * 12));
    }
}

.brands-carousel:hover .brands-track {
    animation-play-state: paused;
}

/* ============================================
   OFFER TILES WITH LABELS (New Style)
============================================ */
.offer-tiles-labeled {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer-tile-labeled {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition-normal);
}

.offer-tile-labeled:hover {
    transform: translateY(-5px);
}

.offer-tile-image-box {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    transition: var(--transition-normal);
}

.offer-tile-labeled:hover .offer-tile-image-box {
    box-shadow: var(--shadow-md);
}

.offer-tile-image-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.offer-tile-label {
    text-align: center;
    padding: 15px 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .offer-tiles-labeled {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .offer-tiles-labeled {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .offer-tile-image-box {
        padding: 20px;
    }

    .offer-tile-label {
        font-size: 13px;
        padding: 10px 5px;
    }
}

/* ============================================
   GALLERY STRIP SECTION
============================================ */
.gallery-strip {
    position: relative;
    background-color: #000;
    height: 480px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.gallery-strip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background-image: url('../images/bg/bg-1-768x197.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.gallery-strip-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.gallery-strip-text {
    width: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 3;
    margin-left: 10%;
}

.gallery-strip-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #f5c518;
    margin-bottom: 3px;
    font-style: italic;
}

.gallery-strip-underline {
    display: none;
}

.gallery-strip-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.btn-gallery {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 8px 16px;
    border: 2px solid #f5c518;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    width: fit-content;
}

.btn-gallery:hover {
    background: #f5c518;
    color: #1a1a2e;
}

.gallery-strip-images {
    width: 62%;
    display: flex;
    gap: 3px;
    background: #000;
    height: 100%;
}

.gallery-strip-item {
    flex: 1;
    overflow: hidden;
    height: 100%;
}

.gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

@media (max-width: 991px) {
    .gallery-strip {
        height: auto;
    }

    .gallery-strip-content {
        flex-direction: column;
    }

    .gallery-strip-text {
        width: 100%;
        text-align: center;
        padding: 25px 20px;
        margin-left: 0;
        background: rgba(0, 0, 0, 0.9);
    }

    .gallery-strip-overlay {
        width: 100%;
        opacity: 0.3;
    }

    .gallery-strip-images {
        width: 100%;
        height: 150px;
    }

    .btn-gallery {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .gallery-strip-item {
        height: 120px;
    }

    .gallery-strip-text h2 {
        font-size: 22px;
    }
}

/* ============================================
   ABOUT PAGE - YELLOW BAR
============================================ */
.about-yellow-bar {
    background: #c95757;
    padding: 100px 0 40px;
    margin-top: 80px;
}

.about-yellow-bar h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    font-style: italic;
    margin: 0;
}

/* ============================================
   ABOUT PAGE - CONTENT SECTION
============================================ */
.about-content-section {
    padding-top: 50px;
    padding-bottom: 60px;
}

.about-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-text-content {
    max-width: 100%;
    margin-bottom: 40px;
}

.about-text-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-image-item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
}

.about-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

/* ============================================
   BRANDS STATIC GRID (for About page)
============================================ */
.brands-grid-static {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-item-static {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item-static img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

/* Responsive for About page */
@media (max-width: 991px) {
    .about-yellow-bar {
        padding: 90px 0 30px;
    }

    .about-yellow-bar h1 {
        font-size: 28px;
    }

    .about-main-title {
        font-size: 26px;
    }

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

    .brands-grid-static {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .about-yellow-bar h1 {
        font-size: 24px;
    }

    .about-main-title {
        font-size: 22px;
    }

    .about-images-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid-static {
        gap: 30px;
    }

    .brand-item-static {
        width: 120px;
        height: 60px;
    }
}

/* ============================================
   OFFER PAGE - Section 1: Page Hero
============================================ */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* ============================================
   OFFER PAGE - Section 2: Products
============================================ */
.product-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px 0;
}

.product-image {
    flex-shrink: 0;
    width: 200px;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-content {
    flex: 1;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.product-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-primary-dark {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 18px 45px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.btn-primary-dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   OFFER PAGE - Section 3: Features Parallax
============================================ */
.section-parallax {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
}

.section-parallax .container {
    position: relative;
    z-index: 2;
}

.section-title-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 50px;
}

.features-list {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item-offer {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item-offer:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #f57018;
    margin-bottom: 10px;
}

.feature-item-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   OFFER PAGE - Section 4: Materials
============================================ */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.material-column {
    padding: 0 20px;
}

.material-column:not(:last-child) {
    border-right: 3px solid #f5c518;
}

.material-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.material-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.material-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.material-list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.material-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.material-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.material-text:last-child {
    margin-bottom: 0;
}

/* Responsive for Offer Page */
@media (max-width: 991px) {
    .page-hero {
        min-height: 280px;
    }

    .page-hero-content h1 {
        font-size: 40px;
    }

    .product-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .product-image {
        width: 150px;
    }

    .product-title {
        font-size: 26px;
    }

    .section-title-large {
        font-size: 28px;
    }

    .materials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .material-column {
        padding: 0;
        border-right: none !important;
        border-bottom: 3px solid #f5c518;
        padding-bottom: 40px;
    }

    .material-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 600px) {
    .page-hero-content h1 {
        font-size: 32px;
    }

    .product-title {
        font-size: 22px;
    }

    .section-title-large {
        font-size: 24px;
    }

    .feature-item-title {
        font-size: 16px;
    }

    .material-title {
        font-size: 20px;
    }
}

/* Mobile Language Switcher Configuration */
.lang-switcher-m {
    display: none;
    /* Hidden by default (desktop) */
    justify-content: center;
    margin-top: auto;
    /* Push to bottom if flex column, or just spacing */
    margin-bottom: 20px;
    gap: 15px;
    width: 100%;
}

.lang-switcher-m img {
    width: 48px;
    /* Slightly larger on mobile */
    height: 32px;
}

.lang-switcher-d {
    display: flex;
    /* Visible by default (desktop) */
}

@media (max-width: 991px) {
    .lang-switcher-d {
        display: none !important;
    }

    .lang-switcher-m {
        display: flex !important;
    }

    /* Ensure nav-menu allows scrolling if content is tall */
    .nav-menu {
        overflow-y: auto;
    }
}

/* ============================================
   SALES PROFILES SECTION
============================================ */
.sales-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.sales-profile-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    text-decoration: none;
}

.sales-profile-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.sales-profile-logo {
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sales-profile-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* eBay logo is wider, so we adjust its container */
.sales-profile-logo-ebay {
    width: 160px;
    height: 65px;
}

.sales-profile-logo-ebay img {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .sales-profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .sales-profile-tile {
        padding: 20px 15px;
    }

    .sales-profile-logo {
        width: 100px;
        height: 70px;
    }

    .sales-profile-logo-ebay {
        width: 110px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .sales-profiles-grid {
        gap: 10px;
    }

    .sales-profile-tile {
        padding: 15px 10px;
    }

    .sales-profile-logo {
        width: 70px;
        height: 50px;
    }

    .sales-profile-logo-ebay {
        width: 80px;
        height: 40px;
    }
}