/*
Theme Name: Plast-Profil
Theme URI: https://plast-profil.cool24.vot.pl
Author: Coolbrand
Author URI: https://marketingczarnecki.pl
Description: Motyw dla strony Plast-Profil
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: responsive, custom-colors, shop
*/

:root {
    --font-primary: "Encode Sans Expanded", sans-serif;
    --color-primary: #F68B00;
    --color-accent: #141630;
    --color-default: #FFE44D;
    --color-white: white;
    --font-size-base: 16px;
    --font-size-lg: 50px;
    --font-weight-normal: 400;
    --font-weight-bold: 600;
    --transition-ease: 0.3s ease;
    --spacing-sm: 8px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
}

/* Header Styles */
.site-header {
    background: var(--color-white);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    transition: transform 0.3s ease;
    z-index: 1000;
    font-family: var(--font-primary);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xl);
}

.nav-menu li {
    position: relative;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: var(--transition-ease);
}

/* Animowane podkreślenie */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-ease);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

/* Chevron w menu */
.nav-menu .chevron {
    width: 12px;
    height: 8px;
    transition: transform var(--transition-ease);
    color: var(--color-accent);
}

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

/* Submenu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 332px;
    padding: var(--spacing-sm) 0;
    margin-top: 10px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-ease);
    z-index: 1001;
}

.nav-menu .sub-menu li {
    width: 100%;
    
}

.nav-menu .sub-menu a {
    display: block;
    border-bottom: none;
    font-size: 14px;
    padding: 10px 15px;
}

.nav-menu .sub-menu li:not(:last-child) a {
    border-bottom: 1px solid #CCCCCC;
    margin: 0 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.nav-menu .sub-menu li:last-child a {
    margin: 0 15px;
}

.nav-menu .sub-menu li:not(:last-child)::after {
    content: '';
    display: block;
    height: 1px;
    background: #e0e0e0;
    margin: 0 15px;
}
.nav-menu .sub-menu a::after {
    display: none;
}

.nav-menu .sub-menu a:hover {
    background: #f8f9fa;
    color: var(--color-primary);
}

/* Contact Section */
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-shrink: 0;
}

/* Phone Info */
.phone-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.phone-icon {
    width: 22px;
    height: 34px;
}

.phone-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-label {
    font-size: 12px;
    color: #666;
    line-height: 1;
}

.phone-number {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: var(--transition-ease);
}

.phone-number:hover {
    color: var(--color-primary);
}

.gt_options {
    margin-top: 50px !important;
}


/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition-ease);
}

.social-link img {
    width: 32px;
    height: 32px;
}

.social-link:hover {
    transform: translateY(-2px);
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    /* Adjust header container for mobile */
    .header-container {
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    /* Mobile logo */
    .site-logo img {
        height: 30px;
        width: auto;
    }
    
    /* Mobile contact section */
    .mobile-contact {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
        justify-content: center;
    }
    
    .mobile-phone-info {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-phone-icon {
        width: auto;
        height: 16px;
    }
    
    .mobile-phone-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mobile-phone-label {
        font-size: 10px;
        color: #6b7280;
        line-height: 1;
    }
    
    .mobile-phone-number {
        font-size: 12px;
        font-weight: 600;
        color: #1f2937;
        text-decoration: none;
        line-height: 1;
    }
    
    .mobile-language-switcher {
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }
    
    .mobile-language-switcher:hover {
        background-color: #f3f4f6;
    }
    
    .mobile-current-lang {
        font-size: 12px;
        font-weight: 500;
        color: #1f2937;
    }
    
    .mobile-chevron-down {
        width: 10px;
        height: 6px;
        color: #6b7280;
        transition: transform 0.3s ease;
    }
    
    /* Hamburger Menu Button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .hamburger-line {
        width: 90%;
        height: 2px;
        background-color: #1f2937;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    transition: right 0.3s ease;
}

.mobile-menu-overlay.active {
    right: 0;
}

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

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

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.mobile-menu-close {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #1f2937;
    top: 50%;
    left: 50%;
    border-radius: 1px;
}

.close-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-navigation {
    margin-bottom: 40px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-menu li:last-child {
    border-bottom: none ;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #3b82f6;
}

/* Mobile Submenu Styles */
.mobile-nav-menu .menu-item-has-children {
    position: relative;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu .menu-item-has-children > a {
    flex: 1;
    padding: 15px 50px 15px 0;
}

.mobile-nav-menu .menu-item-has-children .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.mobile-nav-menu .menu-item-has-children .chevron-icon {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #6b7280;
    transition: transform 0.3s ease;
    display: block;
}

.mobile-nav-menu .menu-item-has-children.submenu-open .chevron-icon {
    transform: rotate(180deg);
}

.mobile-nav-menu .sub-menu {
    display: none;
    background-color: #f8f9fa;
    padding-left: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-menu .menu-item-has-children.submenu-open .sub-menu {
    display: block;
}

.mobile-nav-menu .sub-menu li {
    border-bottom: 1px solid #e2e8f0;
    border-top: none;
}

.mobile-nav-menu .sub-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu .sub-menu a {
    padding: 12px 20px;
    font-size: 16px;
    color: #4b5563;
    background-color: transparent;
}

.mobile-nav-menu .sub-menu a:hover {
    color: var(--color-primary);
    background-color: #f1f5f9;
}

/* Mobile Social Links */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-social-link:hover {
    background-color: #e5e7eb;
}

.mobile-social-link img {
    width: 40px;
    height: 40px;
}

@media (max-width: 480px) {
    .mobile-contact {
        gap: 10px;
    }
    
    .mobile-phone-label {
        font-size: 9px;
    }
    
    .mobile-phone-number {
        font-size: 11px;
    }
    
    .mobile-current-lang {
        font-size: 11px;
    }
}

/* Footer Styles */
.footer {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 100px 0 30px;
    margin-top: auto;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 ;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 250px 1fr 1fr 1fr 250px;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* Footer Logo and Social */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
    align-items: center;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.social-media-links {
    display: flex;
    gap: 15px;
}

.social-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-ease);
}

.social-media-link img {
    width: 32px;
    height: 32px;
}

.social-media-link:hover {
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-column h4 {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

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

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

.footer-menu-list a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-ease);
    opacity: 0.8;
    line-height: 1.4;
}

.footer-menu-list a:hover {
    opacity: 1;
    color: var(--color-primary);
}

/* Featured item (Drzwi) */
.footer-menu-list a.featured {
    color: var(--color-primary);
    opacity: 1;
    font-weight: var(--font-weight-bold);
}

/* Second column - no header, just continues the list */
.footer-menu-list.second-column {
    margin-top: 60px; /* Align with first item of previous column */
}

.contact-footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-footer-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-footer-text {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.4;
}

.contact-footer-link {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: var(--transition-ease);
    line-height: 1.4;
}

.contact-footer-link:hover {
    opacity: 1;
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

.footer-credits {
    color: var(--color-white);
    opacity: 0.7;
}

.footer-credits a {
    text-decoration: none;
    color: var(--color-white);
    opacity: 0.7;
}

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

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay for better text readability */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 22, 48, 0.4);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--color-white);
}

.slide-content .container {
    max-width: var(--max-width);
    margin: 0 auto 0 100px;
    padding: 0 var(--spacing-lg);
}

.slide-text {
    background: #141630CC;
    width: 542px;
    padding: 10px 48px 48px;
    gap: 24px;
    opacity: 1;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Slide Button */
.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-default);
    color: var(--color-accent);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    transition: var(--transition-ease);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.slide-btn i {
    font-size: 14px;
    transition: var(--transition-ease);
}

.slide-btn:hover i {
    transform: translateX(3px);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-ease);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 40px;
    height: 4px;
    border-radius: 0;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-ease);
}

.dot.active {
    background: var(--color-primary);
}

.dot:hover {
    background: var(--color-white);
}

/* Products Section */
.products-section {
    position: relative;
    background: var(--color-white);
    padding-top: 0;
    padding-bottom: 80px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    top: -30px; /* Nachodzenie na sekcję hero */
    z-index: 10;
}

/* Product Item */
.product-item {
    position: relative;
    transition: transform var(--transition-ease);
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 275px;
    height: 430px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border: 5px solid #FFFFFF;
    background-color: #0000004D;
    opacity: 1;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000004D;
    color: var(--color-white);
    display: flex;
    align-items: flex-end;
    transform: translateY(0);
    transition: var(--transition-ease);
}

/* Product Content */
.product-content {
    text-align: center;
    padding: 30px 25px;
    width: 100%;
}

.product-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-white);
    opacity: 0.9;
}

.produkt-description i {
    color: #059669;
}

/* Product Button */
.product-btn {
    display: inline-block;
    background: var(--color-default);
    color: var(--color-accent);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    border-radius: 0;
    transition: var(--transition-ease);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.product-btn:hover {
    background: var(--color-primary);
    color: var(--color-accent);
}

/* Section Content */
.products-content {
    margin-top: 60px;
}

.products-content .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Section Description */
.section-description {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.section-description p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-accent);
    margin: 0;
}

/* Section Button */
.section-btn {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    border-radius: 0;
    transition: var(--transition-ease);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-btn:hover {
    background: var(--color-primary);
    color: var(--color-accent);
}

/* About Section */
.about-section {
    background: linear-gradient(90deg, #141630 0%, #252961 100%);
    padding: 80px 0;
    color: var(--color-white);
}

.about-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Section Header */
.about-section .section-subtitle {
    display: block;
    max-width: 1000px;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.about-section .section-title {
    max-width: 1000px;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
    text-align: left;
}

/* About Image Content */
.about-image-content {
    position: relative;
    width: 1000px;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    max-width: 100%;

}

.about-image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
    z-index: 1;
}

/* About Text */
.about-text {
    position: relative;
    z-index: 2;
    padding: 48px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* About Description */
.about-description {
    margin-bottom: 40px;
}

.about-heading {
    font-size: 1.3rem;
    font-weight: var(--font-weight-normal);
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-white);
    opacity: 0.9;
    margin: 0;
}

/* About Button */
.about-btn {
    display: inline-block;
    background: var(--color-default);
    color: var(--color-accent);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    border-radius: 0;
    transition: var(--transition-ease);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-btn:hover {
    background: var(--color-primary);
    color: var(--color-accent);
}

/* Advantages Section */
.advantages-section {
    background: var(--color-white);
    padding: 80px 0;
}

.advantages-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Advantages Content Layout */
.advantages-content {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 30px;
    align-items: start;
}

/* Section Header */
.advantages-section .section-subtitle {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.advantages-section .section-title {
    font-size: 35px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

/* Advantages Description */
.advantages-description {
    margin-bottom: 40px;
}

.advantages-description p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-accent);
    margin: 0;
}

/* Advantages Button */
.advantages-btn {
    display: inline-block;
    background: var(--color-default);
    color: var(--color-accent);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    border-radius: 0;
    transition: var(--transition-ease);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantages-btn:hover {
    background: var(--color-primary);
    color: var(--color-accent);
}

/* Advantages Boxes Grid */
.advantages-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Single Advantage Box */
.advantage-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 30px 25px;
    transition: var(--transition-ease);
}

.advantage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Box Icon */
.box-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.box-icon img {
    width: 60px;
    height: 60px;
}

.box-title {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    line-height: 1.3;
}

.box-text {
    font-size: 10px;
    line-height: 1.6;
    color: var(--color-accent);
    opacity: 0.8;
    margin: 0;
}

/* Page Hero Section */
.page-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--color-white);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-content .container {
    max-width: var(--max-width);
    margin: 0 auto 50px auto;
    padding: 0 var(--spacing-lg);
}

/* Page Title */
.page-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: var(--color-white);
}

/* About Content Wrapper */
.about-content-wrapper {
    max-width: var(--max-width);
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

/* About Image Section */
.about-image-section {
    position: relative;
    width: 1100px;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: rgba(20, 22, 48, 0.8);
    z-index: 1;
}

/* About Text Content */
.about-text-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 40px 50px;
    max-width: 400px;
}

/* About Main Title */
.about-main-title {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* About Description Text */
.about-description-text {
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-white);
}

.about-description-text p {
    margin-bottom: 20px;
}

.about-description-text p:last-child {
    margin-bottom: 0;
}

/* About Content Section 2 */
.about-content-section-2 {
    padding: 80px 0;
    background: #F2F2F2;
}

/* About Content Wrapper 2 */
.about-content-wrapper-2 {
    max-width: var(--max-width);
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

/* About Image Section 2 */
.about-image-section-2 {
    position: relative;
    width: 1100px;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Image Overlay 2 */
.image-overlay-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(20, 22, 48, 0.8);
    z-index: 1;
}

/* About Text Content 2 */
.about-text-content-2 {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 40px 50px;
    max-width: 400px;
}

/* About Main Title 2 */
.about-main-title-2 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* About Description Text 2 */
.about-description-text-2 {
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 30px;
}

.about-description-text-2 p {
    margin-bottom: 20px;
}

.about-description-text-2 p:last-child {
    margin-bottom: 0;
}

/* About Button */
.about-btn {
    display: inline-block;
    background: var(--color-default);
    color: var(--color-accent);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    border-radius: 0;
    transition: var(--transition-ease);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-btn:hover {
    background: var(--color-primary);
    color: var(--color-accent);
}

/* Features Section */
.features-section {
    background: var(--color-white);
    padding: 80px 0;
}

.features-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Section Header */
.features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-section .section-subtitle {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.features-section .section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 30px 20px;
}

/* Feature Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition-ease);
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

/* Feature Title */
.feature-title {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Feature Text */
.feature-text {
    font-size: 10px;
    line-height: 1.6;
    color: var(--color-accent);
    opacity: 0.8;
    margin: 0;
}

/* Video Section */
.video-section {
    background: linear-gradient(90deg, #141630 0%, #252961 100%);
    padding: 80px 0;
    color: var(--color-white);
}

.video-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Section Header */
.video-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-section .section-subtitle {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.video-section .section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Video Item */
.video-item {
    position: relative;
    overflow: hidden;
}

.video-link {
    display: block;
    text-decoration: none;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition-ease);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-ease);
}

.video-item:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Play Button */
.play-button {
    transform: scale(1);
    transition: var(--transition-ease);
    cursor: pointer;
}

.video-item:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Offer Grid Section */
.offer-grid-section {
    background: var(--color-white);
    padding: 80px 0;
}

.offer-grid-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 400px);
    gap: 20px;
}

/* Offer Item */
.offer-item {
    position: relative;
    overflow: hidden;
    transition: var(--transition-ease);
    text-align: center;
}

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

/* Contact Item - spans 2 columns */
.contact-offer-item {
    grid-column: span 3;
    align-items: center;
}

.contact-offer-item .offer-overlay {
   align-items: center;
   justify-content: center;
   text-align: center;
}

.contact-offer-item .offer-content {
   text-align: center;
}

/* Offer Image */
.offer-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Offer Overlay */
.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition-ease);
}

.offer-item:hover .offer-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Offer Content */
.offer-content {
    color: var(--color-white);
    width: 100%;
}

/* Offer Title */
.offer-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Contact Item Title */
.contact-item .offer-title {
    font-size: 24px;
    margin-bottom: 15px;
    align-items: center;
}

/* Offer Description */
.offer-description {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Contact Item Description */
.contact-item .offer-description {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Offer Button */
.offer-btn {
    display: inline-block;
    background: var(--color-default);
    color: var(--color-accent);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 12px;
    border-radius: 0;
    transition: var(--transition-ease);
    letter-spacing: 0.5px;
}

.offer-btn:hover {
    background: var(--color-primary);
    color: var(--color-accent);
}

/* Contact Button */
.contact-btn {
    background: var(--color-default);
    font-size: 14px;
    padding: 10px 20px;
}

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

.page-content {
    background: var(--color-white);
    padding: 80px 0;
}

.page-content .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Contact Main Section */
.contact-main-section {
    background: var(--color-white);
    padding: 80px 0;
}

.contact-main-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

/* Lewa strona - informacje kontaktowe */
.contact-info-side {
    flex: 2;
}

.contact-section {
    margin-bottom: 20px;
}

.contact-section h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.company-name {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-details {
    display: flex;
}

.contact-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    color: var(--color-accent);
    font-size: 12px;
    line-height: 1.4;
}

.contact-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition-ease);
}

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

.contact-hours {
    font-size: 11px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Separator */
.separator {
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

/* Representatives */
.representatives-row {
    display: flex;
    margin-bottom: 15px;
}

.rep-column {
    width: 50%;
}

.rep-column h4 {
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: 8px;
}

.rep-item h4 {
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: 8px;
}

/* Prawa strona - formularz */
.contact-form-side {
    flex: 1;
    background: #F2F2F2;
    padding: 30px;
}

.form-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: 5px;
    font-size: 13px;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 13px;
    transition: var(--transition-ease);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-accent);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.submit-btn {
    background: var(--color-default);
    color: var(--color-accent);
    width: 100%;
    padding: 12px 30px;
    border: none;
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-ease);
    align-self: flex-start;
}

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

.form-image {
    margin-top: 20px;
}

.form-image img {
    width: 100%;
    height: auto;
    padding: 0;
}

/* Map Section */
.map-section {
    background: var(--color-white);
    padding: 0 0 80px;
}

.map-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.map-wrapper {
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    display: block;
}

.okna-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.okna-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.okna-content {
    flex: 1;
}

.okna-image {
    flex: 1;
}

.okna-badge {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.okna-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 24px;
}

.okna-description {
    font-size: 10px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
}

.okna-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 32px;
}

.okna-text {
    font-size: 10px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.okna-benefits {
    list-style: none;
    margin: 20px 0 32px 0;
    padding: 0;
}

.okna-benefits li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.okna-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 16px;
}

.okna-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.veka-section {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.veka-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.veka-container {
    max-width: var(--max-width);
    position: relative;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.veka-header {
    margin-bottom: 60px;
}

.veka-badge {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.veka-title {
    font-size: 34px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 0;
}

.veka-features {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.veka-feature {
    flex: 1;
    background-color: rgba(30, 41, 59, 0.95);
    padding: 10px;
    text-align: center;
}

.veka-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veka-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.veka-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.veka-feature-text {
    font-size: 10px;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

.veka-description {
    max-width: 1150px;
    margin: 0 auto 40px;
}

.veka-description p {
    font-size: 12px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 16px;
}

.veka-cta {
    margin-top: 24px;
}

.veka-cta-text {
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.veka-button {
    display: inline-block;
    background-color: #fbbf24;
    color: #1f2937;
    font-size: 12px;
    font-weight: 600;
    padding: 16px 32px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.veka-button:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.procural-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.procural-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.procural-content {
    flex: 1;
}

.procural-image {
    flex: 1;
}

.procural-badge {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.procural-title {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 24px;
}

.procural-description {
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.procural-text {
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 0;
    line-height: 1.6;
}

.procural-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.produkty-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.produkty-section h2 {
    text-align: center;
}

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

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

.produkt-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produkt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.produkt-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.produkt-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.produkt-content {
    padding: 24px;
}

/* Specjalna karta informacyjna */
.info-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.info-content {
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: left;
}

.info-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.info-benefits li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
}

.info-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 16px;
}

.info-footer {
    margin-top: auto;
}

.info-highlight {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drzwi-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.drzwi-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.drzwi-content {
    flex: 1;
}

.drzwi-image {
    flex: 1;
}

.drzwi-badge {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.drzwi-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 40px;
}

.drzwi-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.drzwi-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-number {
    width: 40px;
    height: 40px;
    background-color: #fbbf24;
    color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 15px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

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

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 10px;
    color: #4b5563;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 16px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list strong {
    color: #1f2937;
    font-weight: 600;
}

.drzwi-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.obecnosc-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.obecnosc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.obecnosc-image {
    flex: 1;
}

.obecnosc-content {
    flex: 1;
}

.obecnosc-badge {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.obecnosc-title {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 32px;
}

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

.obecnosc-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.obecnosc-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 18px;
}

.obecnosc-list li:last-child {
    margin-bottom: 0;
}

.obecnosc-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tabela-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 0 50px;
    text-align: center;
}

.tabela-section img {
    max-width: 1100px;
    width: 100%;
    height: auto;
}

.tabela2-section {
    background-color: #F2F2F2;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 0 50px;
    text-align: center;
}

.tabela2-section img {
    max-width: 1100px;
    width: 100%;
    height: auto;
}

.tarasowe-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.tarasowe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.tarasowe-content {
    flex: 1;
}

.tarasowe-image {
    flex: 1;
}

.tarasowe-badge {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.tarasowe-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 32px;
}

.tarasowe-list {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
}

.tarasowe-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.tarasowe-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 18px;
}

.tarasowe-list li:last-child {
    margin-bottom: 0;
}

.tarasowe-list strong {
    color: #1f2937;
    font-weight: 600;
}

.tarasowe-summary {
    font-size: 12px;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    padding: 20px 0 0 0;
    border-top: 2px solid #e5e7eb;
}

.tarasowe-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.systemy-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.systemy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.system-item {
    display: flex;
    flex-direction: column;
}

.system-image {
    width: 100%;
    margin-bottom: 24px;
}

.system-content {
    flex: 1;
}

.system-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.system-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.system-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.system-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 16px;
}

.system-features li:last-child {
    margin-bottom: 0;
}

.system-features strong {
    color: #1f2937;
    font-weight: 600;
}

.wybor-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.wybor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.wybor-content {
    flex: 1;
}

.wybor-image {
    flex: 1;
}

.wybor-badge {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.wybor-title {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 32px;
}

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

.wybor-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.wybor-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 18px;
}

.wybor-list li:last-child {
    margin-bottom: 0;
}

.wybor-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.rolety-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.rolety-section-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.rolety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.produkt-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produkt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.produkt-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.produkt-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.produkt-content {
    padding: 24px;
}

.produkt-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.produkt-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
}

.produkt-description p {
    margin-bottom: 12px;
}

.produkt-description p:last-child {
    margin-bottom: 0;
}

.produkt-description ul {
    margin: 12px 0;
    padding-left: 20px;
}

.produkt-description li {
    margin-bottom: 6px;
}

.zaluzje-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.zaluzje-section-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

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

.zaluzje-item {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zaluzje-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.zaluzje-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.zaluzje-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.zaluzje-content {
    padding: 24px;
}

.zaluzje-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.zaluzje-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.zaluzje-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 16px;
}

.zaluzje-features li:last-child {
    margin-bottom: 0;
}

.zaluzje-features strong {
    color: #1f2937;
    font-weight: 600;
}

.smarthome-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.smarthome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.smarthome-content {
    flex: 1;
}

.smarthome-image {
    flex: 1;
}

.smarthome-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 40px;
}

.system-block {
    margin-bottom: 40px;
}

.system-block:last-child {
    margin-bottom: 0;
}

.system-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.system-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.system-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 16px;
}

.system-features li:last-child {
    margin-bottom: 0;
}

.system-features strong {
    color: #1f2937;
    font-weight: 600;
}

.smarthome-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.napedy-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.napedy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.napedy-image {
    flex: 1;
}

.napedy-content {
    flex: 1;
}

.napedy-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 32px;
}

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

.napedy-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.napedy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 16px;
}

.napedy-list li:last-child {
    margin-bottom: 0;
}

.napedy-list strong {
    color: #1f2937;
    font-weight: 600;
}

.napedy-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dlaczego-selve-section {
    padding: 80px 0;
    background-color: #F2F2F2;
}

.dlaczego-selve-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.dlaczego-selve-image {
    flex: 1;
}

.dlaczego-selve-content {
    flex: 1;
}

.dlaczego-selve-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 32px;
}

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

.dlaczego-selve-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.dlaczego-selve-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: bold;
    font-size: 16px;
}

.dlaczego-selve-list li:last-child {
    margin-bottom: 0;
}

.dlaczego-selve-list strong {
    color: #1f2937;
    font-weight: 600;
}

.dlaczego-selve-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Sekcja ze sliderem */
.company-slider-section {
    padding: 80px 0;
}

.company-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.company-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.company-slide {
    flex: 0 0 25%; /* 4 slajdy na desktop */
    padding: 0 10px;
    box-sizing: border-box;
}

.company-slide img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Nawigacja slidera */
.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: var(--color-accent);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.slider-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.slider-btn:active {
    transform: translateY(0);
}

.slider-btn i {
    font-size: 16px;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .company-slider-section {
        padding: 40px 0;
    }
    
    .company-slide {
        flex: 0 0 100%; /* 1 slajd na mobile */
        padding: 0 5px;
    }
    
    .company-slide img {
        height: 200px;
    }
    
    .slider-navigation {
        margin-top: 20px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .company-slide {
        flex: 0 0 50%; /* 2 slajdy na tablet */
    }
}



@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dodatkowe style dla lepszego wyglądu */
.company-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
    background: linear-gradient(to right, rgba(248, 249, 250, 1), transparent);
    z-index: 2;
    pointer-events: none;
}

.company-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
    background: linear-gradient(to left, rgba(248, 249, 250, 1), transparent);
    z-index: 2;
    pointer-events: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Footer Styles */
    .footer {
        padding: 60px 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-section {
        align-items: center;
        margin-top: 0;
    }

    .footer-logo {
        height: 50px;
    }

    .social-media-links {
        justify-content: center;
    }

    .footer-menu-list.second-column {
        margin-top: 0;
    }

    .contact-footer-info {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Hero Slider Styles */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content .container {
        margin: 0 auto;
        padding: 0 20px;
    }

    .slide-text {
        width: 100%;
        padding: 20px 30px 30px;
        background: rgba(20, 22, 48, 0.9);
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 40px;
    }

    .dot {
        width: 30px;
        height: 3px;
    }

    /* Products Section */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
        top: -20px;
    }

    .product-image {
        width: 100%;
        height: 300px;
    }

    .product-content {
        padding: 20px 15px;
    }

    .product-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .product-description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .product-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .products-content {
        margin-top: 40px;
    }

    .products-content .container {
        padding: 0 20px;
    }

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

    .section-description {
        max-width: 100%;
    }

    .section-description p {
        font-size: 14px;
    }

    .section-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-section .container {
        padding: 0 20px;
    }

    .about-section .section-subtitle,
    .about-section .section-title {
        max-width: 100%;
        text-align: center;
    }

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

    .about-image-content {
        width: 100%;
        height: 400px;
    }

    .about-image-content::before {
        width: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    }

    .about-text {
        padding: 30px 20px;
        max-width: 100%;
        text-align: center;
    }

    .about-heading {
        font-size: 1.1rem;
    }

    .about-paragraph {
        font-size: 14px;
    }

    .about-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Advantages Section */
    .advantages-section {
        padding: 60px 0;
    }

    .advantages-section .container {
        padding: 0 20px;
    }

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

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

    .advantages-description p {
        font-size: 14px;
    }

    .advantages-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .advantages-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-box {
        padding: 25px 20px;
    }

    .box-icon {
        width: 50px;
        height: 50px;
        margin-top: 10px;
    }

    .box-icon img {
        width: 50px;
        height: 50px;
    }

    .box-title {
        font-size: 16px;
    }

    .box-text {
        font-size: 12px;
    }

    /* Page Hero Section */
    .page-hero {
        height: 300px;
    }

    .hero-content .container {
        margin: 0 auto 30px auto;
        padding: 0 20px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    /* About Content Sections */
    .about-content-section,
    .about-content-section-2 {
        padding: 60px 0;
    }

    .about-content-wrapper,
    .about-content-wrapper-2 {
        max-width: 100%;
        margin: 0;
        justify-content: center;
    }

    .about-image-section,
    .about-image-section-2 {
        width: 100%;
        height: 600px;
        justify-content: center;
    }

    .image-overlay,
    .image-overlay-2 {
        width: 100%;
        background: rgba(20, 22, 48, 0.8);
    }

    .about-text-content,
    .about-text-content-2 {
        max-width: 100%;
        padding: 50px 20px;
        text-align: center;
    }

    .about-main-title,
    .about-main-title-2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .about-description-text,
    .about-description-text-2 {
        font-size: 14px;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0;
    }

    .features-section .container {
        padding: 0 20px;
    }

    .features-section .section-header {
        margin-bottom: 40px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

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

    .feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-text {
        font-size: 12px;
    }

    /* Video Section */
    .video-section {
        padding: 60px 0;
    }

    .video-section .container {
        padding: 0 20px;
    }

    .video-section .section-header {
        margin-bottom: 40px;
    }

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

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-thumbnail {
        height: 200px;
    }

    /* Offer Grid Section */
    .offer-grid-section {
        padding: 60px 0;
    }

    .offer-grid-section .container {
        padding: 0 20px;
    }

    .offer-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .offer-item {
        width: 100%;
        height: 300px;
        min-height: 300px;
    }

    .contact-offer-item {
        grid-column: unset;
        height: 350px;
        min-height: 350px;
    }

    .offer-image {
        width: 100%;
        height: 100%;
    }

    .offer-overlay {
        padding: 20px;
        display: flex;
        align-items: flex-end;
    }

    .contact-offer-item .offer-overlay {
        align-items: center;
        justify-content: center;
    }

    .offer-content {
        width: 100%;
    }

    .contact-offer-item .offer-content {
        text-align: center;
    }

    .offer-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact-item .offer-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .offer-description {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .contact-item .offer-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .offer-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .contact-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Page Content */
    .page-content {
        padding: 60px 0;
    }

    .page-content .container {
        padding: 0 20px;
    }

    /* Contact Main Section */
    .contact-main-section {
        padding: 60px 0;
    }

    .contact-main-section .container {
        padding: 0 20px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-item {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-text,
    .contact-link {
        font-size: 14px;
    }

    .contact-hours {
        font-size: 12px;
    }

    .representatives-row {
        flex-direction: column;
        gap: 15px;
    }

    .rep-column {
        width: 100%;
    }

    .rep-column h4,
    .rep-item h4 {
        font-size: 14px;
    }

    .contact-form-side {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 14px 25px;
    }

    /* Map Section */
    .map-section {
        padding: 0 0 60px;
    }

    .map-section .container {
        padding: 0 20px;
    }

    /* Product-specific sections */
    .okna-section,
    .procural-section,
    .drzwi-section,
    .obecnosc-section,
    .tarasowe-section,
    .wybor-section,
    .smarthome-section,
    .napedy-section,
    .dlaczego-selve-section {
        padding: 60px 0;
    }

    .okna-container,
    .procural-container,
    .drzwi-container,
    .obecnosc-container,
    .tarasowe-container,
    .wybor-container,
    .smarthome-container,
    .napedy-container,
    .dlaczego-selve-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }

    .okna-title,
    .procural-title,
    .drzwi-title,
    .obecnosc-title,
    .tarasowe-title,
    .wybor-title,
    .smarthome-main-title,
    .napedy-title,
    .dlaczego-selve-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .okna-description,
    .procural-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .okna-text,
    .procural-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .okna-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
        margin-top: 25px;
    }

    .okna-benefits li,
    .obecnosc-list li,
    .tarasowe-list li,
    .wybor-list li,
    .napedy-list li,
    .dlaczego-selve-list li {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .drzwi-features {
        gap: 25px;
    }

    .feature-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-top: 10px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-list li {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .system-features li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .tarasowe-summary {
        font-size: 14px;
        padding-top: 15px;
    }

    /* VEKA Section */
    .veka-section {
        padding: 60px 0;
    }

    .veka-container {
        padding: 60px 20px;
    }

    .veka-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .veka-features {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .veka-feature {
        padding: 20px;
    }

    .veka-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .veka-icon img {
        width: 45px;
        height: 45px;
    }

    .veka-feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .veka-feature-text {
        font-size: 12px;
    }

    .veka-description {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .veka-description p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .veka-cta-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .veka-button {
        font-size: 14px;
        padding: 14px 28px;
    }

    /* Product grids */
    .produkty-section,
    .rolety-section,
    .zaluzje-section {
        padding: 60px 0;
    }

    .produkty-container,
    .rolety-container,
    .zaluzje-container {
        padding: 40px 20px;
    }

    .produkty-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .rolety-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .zaluzje-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .produkty-section h2,
    .rolety-section-title,
    .zaluzje-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .produkt-card,
    .zaluzje-item {
        margin-bottom: 20px;
    }

    .produkt-image,
    .zaluzje-image {
        height: 250px;
    }

    .produkt-content,
    .zaluzje-content {
        padding: 20px;
    }

    .produkt-title,
    .zaluzje-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .produkt-description {
        font-size: 13px;
    }

    .zaluzje-features li {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .info-content {
        padding: 25px 20px;
    }

    .info-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .info-benefits li {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .info-highlight {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .info-text {
        font-size: 11px;
    }

    /* Systems section */
    .systemy-section {
        padding: 60px 0;
    }

    .systemy-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .system-image img {
        height: 250px;
    }

    .system-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .system-features li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    /* Table sections */
    .tabela-section,
    .tabela2-section {
        padding: 0 0 40px;
    }

    .tabela-section img,
    .tabela2-section img {
        max-width: 100%;
        height: auto;
    }

    .tabela2-section {
        padding: 40px 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .footer-content {
        gap: 20px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-image {
        height: 250px;
    }

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

    .about-section .section-title,
    .features-section .section-title,
    .video-section .section-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .box-icon {
        margin-top: 0;
        align-self: center;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .contact-form-side {
        padding: 20px 15px;
    }

    .veka-title,
    .okna-title,
    .procural-title,
    .drzwi-title,
    .obecnosc-title,
    .tarasowe-title,
    .wybor-title,
    .smarthome-main-title,
    .napedy-title,
    .dlaczego-selve-title {
        font-size: 20px;
    }

    .produkty-section h2,
    .rolety-section-title,
    .zaluzje-section-title {
        font-size: 24px;
    }

    .drzwi-features {
        gap: 20px;
    }

    .feature-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}