/* Base Styles */
:root {
    --primary-color: #4a6741;
    --secondary-color: #d4b78f;
    --text-color: #333;
    --light-color: #fff;
    --bg-color: #f9f9f7;
    --accent-color: #e8d5b5;
    --dark-accent: #2c3e2e;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.underline {
    height: 3px;
    width: 70px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

header.scrolled {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-color);
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header.scrolled .logo h1 {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

header.scrolled .nav-links a {
    color: var(--text-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

header.scrolled .menu-toggle {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        font-size: 2rem;
        margin-right: 0.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 247, 0.98));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 8rem 2rem 2rem 2rem;
        gap: 1.2rem;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        width: 100%;
        max-width: 400px;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links li:nth-child(6) { transition-delay: 0.35s; }

    .nav-links a {
        display: flex;
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        font-size: 1.15rem;
        color: var(--primary-color);
        background-color: var(--light-color);
        border-radius: 12px;
        border: 1px solid rgba(74, 103, 65, 0.1);
        justify-content: center;
        align-items: center;
        font-weight: 600;
        letter-spacing: 1px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background-color: var(--primary-color);
        color: var(--light-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(74, 103, 65, 0.2);
    }

    .menu-toggle.active {
        color: var(--primary-color);
    }

    .menu-toggle.active i {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .nav-links {
        padding-top: 7rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .menu-toggle {
        font-size: 1.8rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .hero {
        background-position: right center;
    }
    
    .hero-content {
        text-align: left;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        background-position: right center;
    }
    
    .hero-content {
        text-align: left;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.benefits:nth-child(even) {
    background-color: var(--light-color);
}

.benefits .section-header {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.benefit-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.benefits:nth-child(even) .benefit-card {
    background-color: var(--bg-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    min-width: 100%;
    transition: var(--transition);
}

.testimonial-content {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 1rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: var(--bg-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    margin: 0;
    line-height: 1.6;
}

.contact-note {
    color: var(--primary-color);
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.social-media-contact {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-accent));
    border-radius: var(--border-radius);
    color: var(--light-color);
}

.social-media-contact h3 {
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.social-media-contact .social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-media-contact .social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-color);
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: auto;
    height: auto;
}

.social-media-contact .social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
}

.social-media-contact .social-icon i {
    font-size: 1.5rem;
}

.social-media-contact .social-icon span {
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-media-contact .social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-media-contact .social-icon {
        width: 100%;
        justify-content: center;
    }
}

/* Map Section */
.map {
    height: 450px;
}

.map-container {
    height: 100%;
}

/* Footer */
footer {
    background-color: var(--dark-accent);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer-links, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-social h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-color);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

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

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

.footer-social .social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

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

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .benefits {
        padding: 4rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 1rem;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 5px;
        background-color: rgba(0, 0, 0, 0.2);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }

}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .benefits {
        padding: 2.5rem 0;
    }
    
    .benefits .section-header {
        margin-bottom: 2rem;
    }
}

/* Machines Section */
.machines {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.machines-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 1rem 2rem;
    background-color: var(--bg-color);
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.tab-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.tab-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.machine-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 2rem;
}

.machine-image {
    flex: 1;
    max-width: 600px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f9f9f7;
    padding: 1rem;
}

/* Specjalne style dla VacuSteppera */
#vacustepper .machine-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f7;
    padding: 1rem;
}

#vacustepper .machine-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

@media (max-width: 992px) {
    .machine-image {
        height: 400px;
        padding: 0.5rem;
    }
    
    #vacustepper .machine-image img {
        max-height: 100%;
    }
}

@media (max-width: 768px) {
    .machine-image {
        height: 350px;
    }
    
    #vacustepper .machine-image img {
        padding: 0.25rem;
    }
}

@media (max-width: 576px) {
    .machine-image {
        height: 300px;
    }
    
    #vacustepper .machine-image img {
        padding: 0.25rem;
    }
}

.machine-description {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.machine-description h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.machine-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.machine-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.machine-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.machine-features i {
    color: #e74c3c;
    margin-right: 1rem;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .machine-content {
        flex-direction: column;
        gap: 2rem;
    }

    .machine-image {
        max-width: 100%;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .machine-image {
        height: 300px;
    }

    .machine-description {
        padding: 1.5rem;
    }

    .machine-description h3 {
        font-size: 1.8rem;
    }
}

/* Top Banner */
.top-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
}

.top-banner p {
    margin: 0;
}

.top-banner i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-section {
    margin-bottom: 3rem;
}

.pricing-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.price-list {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .service {
    font-size: 1.1rem;
    color: var(--text-color);
}

.price-item .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

/* Pricing Tabs */
.pricing-tabs {
    margin-top: 2rem;
}

.pricing .tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing .tab-button {
    padding: 1rem 2rem;
    background-color: var(--bg-color);
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.pricing .tab-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.pricing .tab-button.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.pricing .tab-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.pricing .tab-pane {
    display: none;
}

.pricing .tab-pane.active {
    display: block;
}

.pricing .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing .price-item .service {
    flex: 1;
    padding-right: 2rem;
}

.pricing .price-item .price {
    white-space: nowrap;
}

/* Responsywność dla zakładek cennika */
@media (max-width: 768px) {
    .pricing .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing .tab-button {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .pricing .tab-content {
        padding: 1rem;
    }

    .pricing .price-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .pricing .price-item .service {
        padding-right: 0;
    }
}

/* Special Offer */
.special-offer {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-accent));
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    color: var(--light-color);
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

.special-offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.special-offer i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.special-offer p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.special-offer strong {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 768px) {
    .special-offer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .special-offer i {
        font-size: 1.8rem;
    }
    
    .special-offer p {
        font-size: 1.1rem;
    }
}

/* Styles dla sekcji diet */
.diet {
    padding: 4rem 0;
    background-color: #fff;
}

.diet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.diet-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.diet-intro {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.diet-intro strong {
    color: #4a6741;
}

.diet-features {
    margin: 2rem 0;
}

.diet-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.diet-feature i {
    color: #4a6741;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.diet-feature p {
    margin: 0;
}

.diet-results {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.diet-results h3 {
    color: #4a6741;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.diet-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diet-results li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.diet-results i {
    color: #4a6741;
}

.diet-images {
    display: grid;
    gap: 2rem;
}

.diet-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.diet-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.diet-image:hover img {
    transform: scale(1.03);
}

.diet-cta {
    background-color: #4a6741;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.diet-cta p {
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #4a6741;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Responsywność */
@media (max-width: 992px) {
    .diet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diet-images {
        order: -1;
    }
}

@media (max-width: 768px) {
    .diet {
        padding: 2rem 0;
    }
    
    .diet-text {
        font-size: 1rem;
    }
    
    .diet-intro {
        font-size: 1.1rem;
    }
    
    .diet-feature {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .diet-results {
        padding: 1.5rem;
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 90%;
    width: 500px;
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 200px;
}

.cookie-button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.cookie-accept:hover {
    background-color: var(--dark-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookie-decline {
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-decline:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .cookie-popup {
        width: 90%;
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .cookie-popup {
        padding: 15px;
    }
    
    .cookie-text p {
        font-size: 14px;
    }
    
    .cookie-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Nowe style dla podstron */
.page-banner {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

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

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.5rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

.testimonial-more {
    text-align: center;
    margin-top: 2rem;
}

.map-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Style dla nawigacji - aktywna strona */
.nav-links a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .page-banner {
        padding: 6rem 1rem 3rem;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .intro-content {
        flex-direction: column;
    }
    
    .intro-image {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .page-banner {
        padding: 5rem 1rem 2rem;
    }
    
    .page-banner h1 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), #2c3e2e);
    padding: 1.2rem 0;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(74, 103, 65, 0.2);
    animation: promoPulse 2s infinite;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shine 3s infinite;
}

.promo-banner p {
    margin: 0;
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-banner i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes promoPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(74, 103, 65, 0.2);
    }
    50% {
        transform: scale(1.005);
        box-shadow: 0 8px 20px rgba(74, 103, 65, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(74, 103, 65, 0.2);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 1rem 0;
    }

    .promo-banner p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .promo-banner i {
        font-size: 1.2rem;
    }
}

/* Testimonials Page */
.testimonials-page {
    padding: 4rem 0;
    background-color: var(--light-color);
}

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

.testimonial-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f7);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonials-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-accent));
    padding: 3rem 2rem;
    border-radius: 20px;
    color: var(--light-color);
    margin: 4rem auto 0;
    max-width: 800px;
}

.testimonials-cta h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.testimonials-cta p {
    margin-bottom: 2rem;
    font-size: clamp(1rem, 3vw, 1.1rem);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-cta .cta-button {
    background-color: var(--light-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
}

.testimonials-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* Responsywność dla tabletów */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Responsywność dla telefonów */
@media (max-width: 768px) {
    .testimonials-page {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .testimonials-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
        border-radius: 15px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .author-info h3 {
        font-size: 1.1rem;
    }

    .author-info span {
        font-size: 0.85rem;
    }
}

/* Responsywność dla małych telefonów */
@media (max-width: 480px) {
    .testimonials-page {
        padding: 2rem 0;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .testimonials-cta {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .testimonials-cta .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 1.5rem;
    }
}

/* Optymalizacja dla urządzeń z hover */
@media (hover: hover) {
    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .testimonials-cta .cta-button:hover {
        transform: translateY(-3px);
    }
}

/* Optymalizacja dla urządzeń dotykowych */
@media (hover: none) {
    .testimonial-card:active {
        transform: translateY(-2px);
    }

    .testimonials-cta .cta-button:active {
        transform: translateY(-1px);
    }
}

/* Spacing Utilities */
.spacing-top {
    margin-top: 8rem;
}

@media (max-width: 768px) {
    .spacing-top {
        margin-top: 6rem;
    }
}

@media (max-width: 576px) {
    .spacing-top {
        margin-top: 4rem;
    }
}