:root {
    /* Kolorystyka - czyste i jasne tony w stylu Wildex */
    --forest-main: #4a7c59;
    --forest-dark: #2f4f3a;
    --forest-light: #6fa876;
    --forest-deeper: #1f3528;
    
    /* Akcenty pomarańczowe */
    --camp-fire: #ff8c42;
    --camp-ember: #d4682f;
    
    /* Neutralne tła */
    --canvas-beige: #fafbfc;
    --canvas-dark: #f0f2f5;
    --earth-brown: #8b6f47;
    --wood-brown: #5c4a3a;
    
    /* Tła - jasne i czyste */
    --night-black: #ffffff;
    --darker-bg: #fafbfc;
    --card-bg: rgba(255, 255, 255, 0.98);
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Teksty - ciemne na jasnym */
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-muted: #999;
    
    /* Gradienty - subtelne */
    --gradient-forest: linear-gradient(135deg, #6fa876 0%, #4a7c59 100%);
    --gradient-forest-deep: linear-gradient(135deg, #4a7c59 0%, #2f4f3a 100%);
    --gradient-nature: linear-gradient(135deg, #6fa876 0%, #4a7c59 50%, #2f4f3a 100%);
    
    /* Akcent ognia */
    --gradient-fire: linear-gradient(135deg, #ff8c42 0%, #d4682f 100%);
    
    /* Cienie - minimalistyczne */
    --shadow-forest: 0 0 30px rgba(79, 122, 90, 0.08);
    --shadow-warm: 0 6px 24px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: rgb(245, 243, 226);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    touch-action: manipulation;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, 
            rgba(245, 243, 226, 0.88) 0%,
            rgba(245, 243, 226, 0.92) 50%,
            rgba(245, 243, 226, 0.88) 100%
        ),
        url('../las.jpg') center/cover no-repeat fixed;
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: none;
    box-shadow: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .countdown-container-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
}

.logo {
    display: none;
}

.logo img {
    display: none;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(79, 122, 90, 0.6)); }
    50% { filter: drop-shadow(0 0 28px rgba(79, 122, 90, 0.8)); }
}

.logo:hover img {
    filter: drop-shadow(0 0 25px rgba(79, 122, 90, 0.8));
    transform: scale(1.05) rotate(-2deg);
    animation: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--camp-fire);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--camp-fire);
}

.nav-links a.active {
    color: var(--camp-fire);
    font-weight: 600;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Register Button in Nav */
.nav-register-btn {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem;
    border-radius: 25px;
    background: #ff6b00;
    border: 2px solid #ff6b00;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 1rem;
}
.nav-register-btn:hover {
    background: transparent;
    color: #ff6b00;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
}

.lang-btn {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--camp-fire);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--camp-fire);
    color: #ffffff;
    border-color: var(--camp-fire);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 1.5rem 2rem;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

@media (max-width: 480px) {
    .mobile-nav {
        padding: 1.5rem 1rem;
    }
}

.mobile-nav.show {
    display: block;
    animation: slideInDown 0.3s ease-out;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-switcher .lang-btn {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.mobile-lang-switcher .lang-btn:hover,
.mobile-lang-switcher .lang-btn.active {
    background: var(--camp-fire);
    border-color: var(--camp-fire);
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

/* Hero Preloader */
.hero-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.5s ease;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #ff8c42;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #4a7c59;
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: #ffffff;
    animation-delay: -1s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-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 1.5s ease-in-out;
}

/* Support for img tag in first slide (LCP optimization) */
.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

/* Dekoracyjne światła - USUNIĘTE */
.hero-lights {
    display: none;
}

.hero-light {
    display: none;
}

.hero-light--1 {
    display: none;
}

.hero-light--2 {
    display: none;
}

@keyframes floatLight {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 140, 66, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    color: #ff8c42;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.1s both;
    position: relative;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-badge-icon {
    color: #ffffff;
    font-size: 0.9rem;
}

.hero-title {
    display: none;
}

.hero-lead {
    display: none;
}

.hero-subtitle {
    display: none;
}

.hero-human {
    display: none;
}

/* Logo wycentrowane w hero */
.hero-logo-center {
    margin: 4rem 0 2.5rem;
    animation: slideInUp 1s ease-out 0.2s both;
    text-align: center;
}

.hero-logo-center img {
    height: 480px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(79, 122, 90, 0.8));
    transition: all 0.3s ease;
    animation: logoPulse 3s ease-in-out infinite;
}

/* Responsywne logo */
@media (max-width: 768px) {
    .hero-logo-center {
        margin: 3rem 0 2rem;
    }
    
    .hero-logo-center img {
        height: 260px;
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .hero-logo-center {
        margin: 4.5rem 0 1.5rem;
    }
    
    .hero-logo-center img {
        height: 280px;
        max-width: 85vw;
    }
}

/* Countdown Timer w nawigacji */
.countdown-container-nav {
    display: flex;
    align-items: center;
}

/* Countdown Timer */
.countdown-container {
    margin: 0 0 1.5rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.countdown-title {
    display: none;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    min-width: 70px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff8c42;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.countdown-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.hero-cta--primary {
    background: #ff8c42;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
}

.hero-cta--primary:hover {
    background: #ff9955;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 140, 66, 0.4);
}

.hero-cta--primary svg {
    transition: transform 0.3s ease;
}

.hero-cta--primary:hover svg {
    transform: translateX(3px);
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.hero-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.03);
}

.hero-cta:active {
    transform: translateY(-1px);
}

.hero-cta--secondary {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.hero-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Hero Info Cards */
.hero-info-cards {
    margin-top: 35px;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    z-index: 10;
    animation: slideInUp 1s ease-out 0.6s both;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.hero-info-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-info-card-icon {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 140, 66, 0.5);
    z-index: 0;
}

.hero-info-card-icon svg {
    width: 80px;
    height: 80px;
}

.hero-info-card-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.hero-info-card-value {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Responsywność Hero */
@media (max-width: 1100px) {
    .hero-info-cards {
        grid-template-columns: repeat(2, 1fr);
        bottom: 1.5rem;
        gap: 0.6rem;
    }
    
    .hero-info-card {
        padding: 1rem 0.7rem;
    }
}

@media (max-width: 360px) {
    .hero-info-cards {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .hero-info-card {
        padding: 1rem;
    }
    
    .hero-info-card-title {
        font-size: 0.65rem;
    }
    
    .hero-info-card-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-bottom: 0;
    }
    
    .hero-content {
        padding: 4.5rem 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-info-cards {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-info-card {
        padding: 1.2rem 1rem;
        min-width: auto;
        max-width: none;
        width: 100%;
    }
    
    .hero-info-card-icon {
        width: 70px;
        height: 70px;
        right: -5px;
    }
    
    .hero-info-card-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .hero-info-card-title {
        font-size: 0.7rem;
    }
    
    .hero-info-card-value {
        font-size: 1rem;
    }
    
    .countdown-container {
        margin: 0 0 1rem;
    }
    
    .countdown-timer {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .countdown-item {
        min-width: 58px;
        padding: 0.45rem 0.4rem;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 96px 0;
    position: relative;
    z-index: 1;
}

.section--light {
    background: rgb(245, 243, 226);
    color: #1a1a1a;
}

.section--light .section-title {
    background: #2f4f3a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section--light .section-subtitle {
    color: #666;
}

.section--light .card {
    background: rgb(245, 243, 226);
    border-color: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
}

.section--light .feature h3 {
    color: #1a1a1a;
}

.section--light .feature p {
    color: #666;
}

.section--light .camp-quote {
    background: rgba(79, 122, 90, 0.05);
    color: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-weight: 400;
}
.card {
    background: rgb(245, 243, 226);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
    color: #1a1a1a;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-out;
}

.card::after {
    display: none;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 122, 90, 0.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Feature Icon - harcerskie stemple */
.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(79, 122, 90, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(79, 122, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(79, 122, 90, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 4px 16px rgba(79, 122, 90, 0.15);
}

.card:hover .feature-icon::before {
    opacity: 1;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

.feature p {
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: rgb(245, 243, 226);
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--forest-main);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}
.bigger-stat-number{
     font-size: 5.5rem !important;
}
.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
}

/* Location Info */
.location-info {
    background: rgb(245, 243, 226);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.location-info h3 {
    color: var(--forest-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-info ul {
    list-style: none;
    padding-left: 0;
}

.location-info li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.location-info li::before {
    content: '🌲';
    position: absolute;
    left: 0;
}

/* Distances List */
.distances-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.distance-item {
    background: rgba(79, 122, 90, 0.05);
    border: 1px solid rgba(79, 122, 90, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.distance-icon {
    font-size: 1.5rem;
}

.distance-text strong {
    color: var(--forest-light);
    display: block;
    margin-bottom: 0.25rem;
}

.distance-text span {
    color: #999;
    font-size: 0.9rem;
}

/* Contact */
.contact-card {
    background: rgb(245, 243, 226);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
    border-color: rgba(79, 122, 90, 0.2);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--forest-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.contact-info a {
    color: var(--forest-light);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info {
    color: #1a1a1a;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
    color: var(--forest-light);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #ff8c42;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.4);
    background: #ff9955;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
.gallery-section {
    background: transparent;
    padding: 6rem 0;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-decoration: none;
}

.gallery-item-vertical {
    aspect-ratio: 3/4;
}

.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.98) contrast(1.02);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.08);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Modal Gallery */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #ff8c42;
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4);
}

.modal-close:hover {
    background: #ff9955;
    transform: rotate(90deg) scale(1.1);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.camp-quote {
    background: rgba(79, 122, 90, 0.04);
    border-left: 3px solid var(--camp-fire);
    padding: 2rem 2.5rem;
    margin: 3.5rem auto;
    max-width: 800px;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Decorative Elements */
.section-decoration {
    position: absolute;
    font-size: 8rem;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.section-decoration.top-left {
    top: 2rem;
    left: 2rem;
}

.section-decoration.bottom-right {
    bottom: 2rem;
    right: 2rem;
}

/* Section Separator - efekt lekkości */
.section-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 6rem 0;
}

/* Ciemne sekcje - alternacja jak w Wildex */
.section--dark {
    background: linear-gradient(to bottom, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: #ffffff;
}

.section--dark .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #e6f4ea 50%, #a8d5b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section--dark .section-subtitle {
    color: #d0d0d0;
}

.section--dark .card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section--dark .feature h3 {
    color: #ffffff;
}

.section--dark .feature p {
    color: #d0d0d0;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .nav-links {
        display: none;
    }
    
    .lang-switcher {
        display: none;
    }

    .countdown-container-nav {
        display: flex;
        justify-content: center;
        flex: 1;
    }

    .nav-register-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        padding: 2rem 1.5rem 2rem;
        align-items: center;
    }

    .hero-badge {
        align-self: center;
    }

    .countdown-container {
        align-self: center;
    }

    .countdown-timer {
        justify-content: center;
    }

    .countdown-timer {
        gap: 0.6rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }

    .stats {
        padding: 4rem 0;
    }

    .gallery-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 1.5rem 1rem 1.5rem;
    }

    .countdown-container {
        margin: 0 0 0.75rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.6rem 0.4rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }

    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .card {
        padding: 1.5rem 1.25rem;
    }
    
    .stats-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 0.5rem 0.3rem;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
}
/* ============================================
   ABOUT SECTION - NOWOCZESNY DESIGN
   ============================================ */

.about-section {
    position: relative;
    padding: 8rem 0 3rem 0;
    overflow: hidden;
    background: transparent;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* Section Label */
.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(79, 122, 90, 0.12);
    color: var(--forest-main);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 122, 90, 0.15);
}

/* Quote Container */
.quote-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--forest-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 
        0 10px 30px rgba(79, 122, 90, 0.2),
        0 0 0 8px rgba(79, 122, 90, 0.05);
}

.camp-quote-modern {
    background: rgb(245, 243, 226);
    padding: 3.5rem 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2d3748;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    position: relative;
    font-style: italic;
}

.camp-quote-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
    border-radius: 24px 24px 0 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

/* Feature Card */
.feature-card {
    background: rgb(245, 243, 226);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(79, 122, 90, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(79, 122, 90, 0.1);
    border-color: rgba(79, 122, 90, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Feature Icon Modern */
.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    background: rgba(79, 122, 90, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(79, 122, 90, 0.15);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .icon-background {
    transform: translate(-50%, -50%) scale(1);
}

.feature-icon-modern i {
    font-size: 2.25rem;
    color: var(--forest-main);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
    background: var(--forest-main);
}

.feature-card:hover .feature-icon-modern i {
    color: white;
    transform: scale(1.1);
}

/* Feature Content */
.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Floating Decorations */
.floating-decoration {
    position: absolute;
    font-size: 6rem;
    opacity: 0.04;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    color: var(--forest-main);
    animation-delay: 0s;
}

.decoration-2 {
    bottom: 15%;
    right: 8%;
    color: var(--camp-fire);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-modern {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon-modern i {
        font-size: 2rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .quote-container {
        padding: 0 1rem;
        margin: 3rem auto;
    }
    
    .camp-quote-modern {
        padding: 2.5rem 1.5rem 2rem;
        font-size: 1.15rem;
        line-height: 1.6;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .floating-decoration {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon-modern i {
        font-size: 1.75rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .camp-quote-modern {
        padding: 2rem 1.25rem 1.75rem;
        font-size: 1.05rem;
    }
    
    .quote-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .camp-quote-modern {
        font-size: 1rem;
        padding: 1.75rem 1rem 1.5rem;
    }
}
/* ============================================
   STATS SECTION - NOWOCZESNY DESIGN
   ============================================ */

.stats-section {
    position: relative;
    padding: 10rem 0;
    background: 
        linear-gradient(135deg, rgba(47, 79, 58, 0.4) 0%, rgba(74, 124, 89, 0.4) 100%),
        url('../las.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgb(245, 243, 226);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.6s ease;
}

.stat-card:hover .stat-shine {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--forest-main);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--forest-main);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a5568;
    letter-spacing: 0.5px;
}

/* ============================================
   GALLERY SECTION - NOWOCZESNY DESIGN
   ============================================ */

.gallery-section-modern {
    position: relative;
    padding: 4rem 0 8rem 0;
    background: transparent;
}

/* ============================================
   CTA REGISTER SECTION
   ============================================ */

.cta-register-section {
    position: relative;
    padding: 4rem 2rem;
    background: transparent;
    overflow: hidden;
}

.cta-register-overlay {
    display: none;
}

.cta-register-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #1f3528 0%, #2f4f3a 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    flex-wrap: wrap;
    text-align: left;
}

.cta-register-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ff8c42;
    background: rgba(255, 140, 66, 0.12);
    border: 1px solid rgba(255, 140, 66, 0.35);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.cta-register-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.6rem 0;
    line-height: 1.2;
}

.cta-register-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.cta-register-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cta-register-btn {
    display: inline-flex;
    align-items: center;
    background: #ff8c42;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: 2px solid #ff8c42;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(255, 140, 66, 0.3);
}

.cta-register-btn:hover {
    background: transparent;
    color: #ff8c42;
    box-shadow: 0 8px 32px rgba(255, 140, 66, 0.45);
}

.cta-register-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    white-space: nowrap;
}

.cta-register-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.cta-register-meta {
    display: none;
}

/* ============================================
   LOCATION SECTION - NOWOCZESNY DESIGN
   ============================================ */

.location-section {
    position: relative;    padding: 8rem 0 8rem 0;
    background: transparent;
    overflow: hidden;
}

.location-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.location-card {
    background: rgb(245, 243, 226);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.location-icon-header {
    width: 60px;
    height: 60px;
    background: var(--forest-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.location-card p, .location-card ul {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.location-card ul {
    padding-left: 1.5rem;
}

.location-card li {
    margin-bottom: 0.75rem;
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.distance-card {
    background: rgb(245, 243, 226);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.distance-card:hover {
    background: rgb(245, 243, 226);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.distance-icon-modern {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(79, 122, 90, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-main);
    font-size: 1.5rem;
}

.distance-text {
    flex: 1;
}

.distance-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.distance-km {
    display: block;
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

/* ============================================
   PROGRAM SECTION - NOWOCZESNY DESIGN Z TIMELINE
   ============================================ */

.program-section {
    position: relative;
    padding: 0rem 0 8rem 0;
    background: transparent;
    overflow: hidden;
}

.program-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* ===== TIMELINE STYLES ===== */
.program-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem 0;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--forest-main);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-marker {
    position: relative;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgb(245, 243, 226);
    border: 4px solid var(--forest-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-main);
    font-size: 1.5rem;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(79, 122, 90, 0.2);
}

.timeline-marker-main {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--forest-main);
    border-color: var(--camp-fire);
    border-width: 5px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(79, 122, 90, 0.3), 0 0 0 8px rgba(255, 140, 66, 0.1);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 30px rgba(79, 122, 90, 0.3);
}

.timeline-item:hover .timeline-marker-main {
    transform: scale(1.1) rotate(360deg);
}

.timeline-content {
    flex: 1;
    background: rgb(245, 243, 226);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -12px;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent rgb(245, 243, 226);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -12px;
    border-width: 12px 12px 12px 0;
    border-color: transparent rgb(245, 243, 226) transparent transparent;
}

.timeline-content-main {
    background: rgb(245, 243, 226);
    border: 2px solid rgba(79, 122, 90, 0.15);
    padding: 2.5rem 3rem;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(79, 122, 90, 0.2);
}

.timeline-date {
    display: inline-block;
    background: rgba(79, 122, 90, 0.15);
    color: var(--forest-main);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-date-main {
    display: inline-block;
    background: var(--camp-fire);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.15);
    color: var(--camp-fire);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
}

/* ===== ATTRACTIONS GRID ===== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.attraction-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgb(245, 243, 226);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.attraction-item:hover {
    transform: translateX(5px);
    background: rgba(79, 122, 90, 0.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 122, 90, 0.15);
}

.attraction-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--forest-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.attraction-item:hover .attraction-icon {
    transform: scale(1.1) rotate(-5deg);
}

.attraction-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.attraction-text strong {
    color: #1a202c;
    font-size: 1rem;
    font-weight: 600;
}

.attraction-text span {
    color: #718096;
    font-size: 0.9rem;
}

/* ===== PROGRAM CTA REGISTER BLOCK ===== */
.program-cta-register {
    margin: 3rem 0;
}

.program-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #1f3528 0%, #2f4f3a 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    flex-wrap: wrap;
}

.program-cta-text {
    flex: 1;
    min-width: 200px;
}

.program-cta-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ff8c42;
    background: rgba(255, 140, 66, 0.12);
    border: 1px solid rgba(255, 140, 66, 0.35);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.program-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.program-cta-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.program-cta-btn {
    display: inline-flex;
    align-items: center;
    background: #ff8c42;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: 2px solid #ff8c42;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(255, 140, 66, 0.3);
    flex-shrink: 0;
}

.program-cta-btn:hover {
    background: transparent;
    color: #ff8c42;
}

/* ===== PROGRAM INFO CARD - NOWY DESIGN ===== */
.program-info-card-new {
    background: rgb(245, 243, 226);
    border-radius: 28px;
    padding: 0;
    border: 2px solid rgba(79, 122, 90, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.info-card-header {
    background: var(--forest-main);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.info-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.info-icon-large {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: white;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-main);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.info-header-text {
    flex: 1;
    color: white;
    position: relative;
    z-index: 1;
}

.info-header-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: white;
}

.info-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 400;
}

.info-card-content {
    padding: 3rem;
}

.info-card-content p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.info-card-content p:last-child {
    margin-bottom: 0;
}

.info-card-content strong {
    color: var(--forest-main);
    font-weight: 700;
}

.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.info-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgb(245, 243, 226);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(79, 122, 90, 0.15);
    color: #2d3748;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--forest-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-highlight-item:hover {
    transform: translateX(8px);
    border-color: var(--forest-main);
    box-shadow: 0 8px 24px rgba(79, 122, 90, 0.15);
}

.info-highlight-item:hover::before {
    opacity: 1;
}

.info-highlight-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-main) 0%, var(--forest-light) 100%);
    color: white;
    font-size: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 122, 90, 0.2);
}

.info-highlight-item:hover i {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 16px rgba(79, 122, 90, 0.3);
}

.info-motto {
    text-align: center;
    background: rgba(255, 140, 66, 0.12);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--camp-fire);
    margin-top: 2rem;
}

.info-motto i {
    color: var(--camp-fire);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.info-motto em {
    color: #2d3748;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
}

/* USUWAMY STARE STYLE */
.program-grid,
.program-card,
.program-icon,
.program-info-card,
.program-info-icon {
    display: none !important;
}

/* ============================================
   ORGANIZERS SECTION - NOWOCZESNY DESIGN
   ============================================ */

.organizers-section {
    position: relative;
    padding: 0rem 0 8rem 0;
    background: transparent;
    overflow: hidden;
}

.organizers-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.organizer-card {
    background: rgb(245, 243, 226);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.organizer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
}

.organizer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.organizer-icon {
    width: 140px;
    height: 140px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}
.organizer-icon1 {
    width: 360px;
    height: 140px;
    
}
.organizer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.organizer-card:hover .organizer-icon {
    transform: scale(1.1) rotate(-5deg);
}

.organizer-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.organizer-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.organizer-card strong {
    color: var(--forest-main);
}

/* ============================================
   CONTACT SECTION - NOWOCZESNY DESIGN
   ============================================ */

.contact-section {
    position: relative;
    padding: 0rem 0 8rem 0;
    background: transparent;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card-modern {
    background: rgb(245, 243, 226);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(79, 122, 90, 0.2);
}

.contact-icon-modern {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--forest-main);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.contact-card-modern:hover .contact-icon-modern {
    transform: scale(1.15) rotate(10deg);
}

.contact-info {
    flex: 1;
}

.contact-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--forest-main);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--camp-fire);
}

.contact-cta {
    background: rgb(245, 243, 226);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(79, 122, 90, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--forest-main);
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--camp-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 140, 66, 0);
    }
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-cta p {
    color: #4a5568;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Responsive Design dla wszystkich sekcji */
@media (max-width: 768px) {
    .stats-section,
    .location-section,
    .program-section,
    .organizers-section {
        padding: 5rem 0 0 0;
    }
    
    .contact-section {
        padding: 3rem 0 2rem 0;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .location-card,
    .organizer-card {
        padding: 2rem;
    }
    
    /* Contact Cards - Mobile */
    .contact-card-modern {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }

    /* Program Timeline - Mobile */
    .program-timeline::before {
        left: 25px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 0;
        margin-left: 1.5rem;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        right: auto;
        left: -12px;
        border-width: 12px 12px 12px 0;
        border-color: transparent white transparent transparent;
    }
    
    .timeline-marker {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.15rem;
    }
    
    .timeline-date,
    .timeline-date-main {
        font-size: 0.85rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .attraction-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
     .stats-section
     {
        padding-bottom: 4rem;
    }
    .program-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 1.25rem;
    }
    
    .timeline-content {
        padding: 1.5rem 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
    
    .timeline-marker-main {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content-main {
        padding: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .timeline-date,
    .timeline-date-main {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .program-info-card-new {
        border-radius: 20px;
    }
    
    .info-card-header {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .info-header-text h3 {
        font-size: 1.5rem;
    }
    
    .info-subtitle {
        font-size: 1rem;
    }
    
    .info-card-content {
        padding: 2rem;
    }
    
    .info-highlights {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .info-motto {
        padding: 1.5rem;
    }
    
    .info-motto em {
        font-size: 1rem;
    }
    
    .organizer-card {
        padding: 2rem 1.5rem;
    }
    
    .organizer-card h3 {
        font-size: 1.3rem;
    }
    
    .organizer-card p {
        font-size: 0.95rem;
    }
    
    .organizer-icon img {
        max-height: 80px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon-modern {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.75rem;
    }
    
    .contact-info strong {
        font-size: 1rem;
    }
    
    .contact-info a {
        font-size: 1rem;
    }
    
    .contact-cta {
        padding: 3rem 2rem;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2.25rem;
    }
    
    .distances-grid {
        grid-template-columns: 1fr;
    }
    
    .location-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
    
    .location-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .location-card h3 {
        font-size: 1.5rem;
    }
    
    .location-icon-header {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .location-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
    
    .location-card {
        padding: 1.75rem 1.25rem;
    }
    
    .location-card h3 {
        font-size: 1.3rem;
    }
    
    .location-card p {
        font-size: 0.95rem;
    }
    
    .contact-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.3rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .location-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-card-modern {
        padding: 1.5rem;
    }
    
    .gallery-grid,
    .location-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
}

/* ============================================
   PARTNERS SECTION - PRZEWIJANE LOGA
   ============================================ */

.partners-section {
    position: relative;
    padding: 0rem 0 8rem 0;
    background: transparent;
    overflow: hidden;
}

.partners-category {
    /* margin-bottom: 4rem; */
}

.partners-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.partners-category-title i {
    color: var(--forest-main);
    font-size: 1.75rem;
}

.partners-scroll {
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    background: transparent;
    border-radius: 24px;
    box-shadow: none;
    width: 90%;
    margin: 0 auto;
    border: none;
    position: relative;
}

.partners-scroll::before,
.partners-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll::before {
    left: 0;
    background: transparent;
}

.partners-scroll::after {
    right: 0;
    background: transparent;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

.partners-scroll-reverse .partners-track {
    animation: scroll-right 35s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.partners-track:hover {
    animation-play-state: paused;
}

/* Grid dla małej liczby partnerów */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 2.5rem;
    justify-content: center;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-grid .partner-logo {
    width: 100%;
    height: 320px;
    padding: 1.5rem;
}

.partners-grid .partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partners-grid .partner-logo img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.partner-logo {
    flex-shrink: 0;
    width: 350px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(79, 122, 90, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-logo:hover {
    background: rgb(255, 255, 255);
    transform: translateY(-8px) scale(1.08);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(79, 122, 90, 0.1);
    border-color: var(--forest-main);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partners-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.partners-grid-5 .partner-logo {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: rgba(255, 255, 255, 1);
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.partners-grid-5 .partner-logo img {
    width: 100%;
    height: 100%;
}

.partners-grid-5 .partner-logo:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: none;
    border-color: transparent;
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .partners-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.partners-cta {
    text-align: center;
    margin-top: 3rem;
}

.partners-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--forest-main);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(79, 122, 90, 0.3);
}

.partners-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79, 122, 90, 0.4);
}

.partners-cta-button i {
    transition: transform 0.3s ease;
}

.partners-cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 5rem 0 3rem 0;
    }
    
    .partners-category {
        margin-bottom: 3rem;
    }
    
    .partners-category-title {
        font-size: 1.25rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem 0 0.5rem 0;
        margin-bottom: 0;
    }
    
    .partners-grid .partner-logo {
        width: 100%;
        height: 220px;
        padding: 1rem;
    }
    
    .partners-grid .partner-logo img {
        max-width: 90%;
        max-height: 90%;
    }
    
    .partner-logo {
        width: 140px;
        height: 90px;
    }
    
    .partners-scroll::before,
    .partners-scroll::after {
        width: 50px;
    }
}

/* ============================================
   SANITARY ZONE SECTION
   ============================================ */

.sanitary-zone-section {
    padding: 5rem 0 7rem;
}

.sanitary-zone-image {
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sanitary-zone-image:hover {
    transform: scale(1.02);
}

.sanitary-zone-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sanitary-zone-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
}

.sanitary-zone-modal.active {
    display: flex;
}

.sanitary-zone-modal img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
}

.sanitary-zone-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sanitary-zone-section {
        padding: 3rem 0 4rem;
    }

    .sanitary-zone-image {
        max-width: 320px;
    }
}

/* ============================================
   PARTNERS PAGE - PEŁNA STRONA PARTNERÓW
   ============================================ */

.partners-hero {
    padding: 18rem 0 8rem;
    background: linear-gradient(135deg, var(--forest-main) 0%, var(--forest-light) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.partners-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.partners-hero-content .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.partners-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 1.5rem 0;
    line-height: 1.2;
}

.partners-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.partners-full-section {
    padding: 6rem 0;
    background: rgb(245, 243, 226);
}

.partners-media-section {
    background: rgb(245, 243, 226);
}

.partners-full-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-full-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--forest-main);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(79, 122, 90, 0.3);
}

.partners-media-icon {
    background: var(--camp-fire);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.partners-full-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.partners-full-header p {
    font-size: 1.15rem;
    color: #4a5568;
}

.partners-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partner-full-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-full-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.partner-full-card:hover::before {
    transform: scaleX(1);
}

.partner-full-card:hover {
    transform: translateY(-8px);
    border-color: var(--forest-main);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.partner-full-logo {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: transparent;
    border-radius: 12px;
}

.partner-full-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-full-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0;
}

.partner-full-card p {
    display: none;
}

.partner-full-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.partners-cta-section {
    padding: 6rem 0;
    background: rgb(245, 243, 226);
}

.partners-cta-box {
    background: rgb(245, 243, 226);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(79, 122, 90, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.partners-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--forest-main);
}

.partners-cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--camp-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.partners-cta-box h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.partners-cta-box p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--forest-main);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(79, 122, 90, 0.3);
}

.partners-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 122, 90, 0.4);
}

.partners-contact-btn i {
    transition: transform 0.3s ease;
}

.partners-contact-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-hero {
        padding: 12rem 0 6rem;
    }
    
    .partners-hero-title {
        font-size: 2rem;
    }
    
    .partners-hero-subtitle {
        font-size: 1rem;
    }
    
    .partners-full-section {
        padding: 4rem 0;
    }
    
    .partners-full-header h2 {
        font-size: 1.75rem;
    }
    
    .partners-full-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-cta-section {
        padding: 4rem 0;
    }
    
    .partners-cta-box {
        padding: 3rem 2rem;
    }
    
    .partners-cta-box h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 5rem 0 0rem 0;
    }
    .organizer-icon1 {
    width: 250px;
    height: 140px;
    
}
.info-card-content{
    padding-left: 0px;
    padding-right:0px;
}
.ogolniak-desc{
       padding-left: 1.5rem;
    padding-right:1.5rem;
}
}


/* ===== COOKIE CONSENT BANNER - RODO/GDPR ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.52);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    z-index: 10000;
    border-top: 3px solid #4F7A5A;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-consent-text h3 i { color: #6fa876; }

.cookie-consent-text p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #4F7A5A;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(79, 122, 90, 0.3);
}

.cookie-btn-accept:hover {
    background: #3d5f47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 122, 90, 0.4);
}

.cookie-btn-reject {
    background: #6c757d;
    color: white;
}

.cookie-btn-reject:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: white;
    color: var(--text-primary);
    border: 2px solid #4F7A5A;
}

.cookie-btn-settings:hover {
    background: #4F7A5A;
    color: white;
    border-color: #4F7A5A;
    transform: translateY(-2px);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-modal-header h3 i { color: var(--forest-main); }

.cookie-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: #f0f0f0;
    color: var(--text-primary);
}

.cookie-modal-body { padding: 1.5rem; }

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: var(--forest-main);
    background: #fff;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-category-header > div {
    flex: 1;
}

.cookie-category-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-category-header h4 i {
    color: var(--forest-main);
    font-size: 1rem;
}

.cookie-category-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-switch input:checked + .cookie-slider {
    background-color: #4F7A5A;
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-switch input:disabled + .cookie-slider {
    background-color: #4F7A5A;
    cursor: not-allowed;
    opacity: 1;
}

.cookie-switch input:disabled + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
}

.cookie-preferences-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #4F7A5A;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(79, 122, 90, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}

.cookie-preferences-btn:hover {
    background: var(--forest-main);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(79, 122, 90, 0.4);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent-buttons {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    .cookie-modal-content {
        margin: 1rem;
    }
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .cookie-preferences-btn {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1rem;
    }
    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }
    .cookie-consent-text p {
        font-size: 0.85rem;
    }
    .cookie-modal-header h3 {
        font-size: 1.25rem;
    }
}


/* messenger-sectio */
.messenger-section {
    position: relative;
    padding: 5rem 0;
    background: url('../slider/02.webp') center center / cover no-repeat;
    overflow: hidden;
}

.messenger-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.messenger-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.messenger-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.messenger-icon {
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.messenger-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.messenger-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.messenger-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.messenger-btn:hover::before {
    width: 300px;
    height: 300px;
}

.messenger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.messenger-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.messenger-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .messenger-section {
        padding: 3rem 0;
    }
    
    .messenger-title {
        font-size: 1.8rem;
    }
    
    .messenger-description {
        font-size: 1rem;
    }
    
    .messenger-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .messenger-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .messenger-title {
        font-size: 1.5rem;
    }
    
    .messenger-description {
        font-size: 0.95rem;
    }
}
