@media(max-width:1200px){.elementor-7666 .elementor-element.elementor-element-e12d6e1{width:var( --container-widget-width, 785.028px );max-width:785.028px;--container-widget-width:785.028px;--container-widget-flex-grow:0;}}





/* Start custom CSS *//* --- GLOBALNE USTAWIENIA --- */
.sjo-full-landing-wrapper {
    --jungle-main: #1a6e38;
    --jungle-dark: #0a3d2e;
    --jungle-accent: #f4d03f;
    --sand-bg: #fdfae7;
    --white: #ffffff;
    max-width: 1000px; /* Odchudzona szerokość */
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* --- SEKCJA 1: HERO (ANIMOWANA I ODCHUDZONA) --- */
.sjo-jungle-card {
    background-color: var(--jungle-main) !important;
    background-image: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.1) 0%, transparent 50%);
    border-radius: 30px;
    padding: 35px 40px 10px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin-bottom: 50px;
}

.sjo-jungle-card-inner { display: flex; align-items: center; gap: 30px; position: relative; z-index: 5; }
.sjo-jungle-text { flex: 1.3; }

.sjo-adventure-badge {
    background: var(--jungle-accent) !important;
    color: var(--jungle-dark) !important;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 12px;
}

.sjo-shine-title {
    color: #fdfae7 !important;
    font-size: clamp(1.8rem, 4.5vw, 2.7rem) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.sjo-shine-title span { color: var(--jungle-accent) !important; }

.sjo-shine-title::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: sjo-text-shine 3s linear infinite;
}

.sjo-jungle-desc { color: white !important; font-size: 0.95rem !important; margin-bottom: 25px !important; opacity: 0.9; }

.sjo-pulse-btn {
    display: inline-block !important;
    background: var(--jungle-accent) !important;
    color: var(--jungle-dark) !important;
    padding: 13px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    animation: sjo-pulse 2s infinite;
    transition: 0.3s;
}
.sjo-pulse-btn:hover { transform: scale(1.05); background: white !important; animation: none; }

.sjo-jungle-img { flex: 1; text-align: right; }
.sjo-floating-smok { 
    width: 100% !important; max-width: 360px; 
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    animation: sjo-float 5s ease-in-out infinite;
    margin-bottom: -15px;
}

/* --- SEKCJA 2: PROGRAM (POPRAWKA SKALOWANIA KART) --- */
.sjo-section-title { text-align: center; color: var(--jungle-dark); font-weight: 900; margin: 40px 0 30px 0; text-transform: uppercase; }

.sjo-program-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); /* Wymuszone 4 kolumny */
    gap: 15px; 
    margin-bottom: 60px;
    width: 100%;
}

.sjo-program-card { 
    background: white !important; 
    padding: 20px 15px !important; 
    border-radius: 25px; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: 0.3s; 
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.sjo-card-icon { 
    font-size: clamp(30px, 3.5vw, 45px); 
    display: block; 
    margin-bottom: 10px; 
}

.sjo-program-card h3 { 
    font-weight: 800 !important; 
    color: var(--jungle-dark) !important; 
    margin-bottom: 8px !important;
    font-size: clamp(0.85rem, 1.4vw, 1.05rem) !important; 
    line-height: 1.2 !important;
}

.sjo-program-card p {
    font-size: clamp(0.7rem, 1.1vw, 0.85rem) !important; 
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* --- SEKCJA 3: SZCZEGÓŁY (JASNA) --- */
.sjo-details-bar {
    background: var(--sand-bg) !important;
    border-radius: 30px;
    padding: 40px;
    display: flex; align-items: center; gap: 30px;
    border: 2px dashed #d1c7a3;
}
.sjo-details-img { flex: 0.7; }
.sjo-details-img img { width: 100%; max-width: 280px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }
.sjo-dark-subtitle { color: var(--jungle-dark) !important; font-weight: 900 !important; margin-bottom: 20px !important; font-size: 1.6rem !important; }

.sjo-info-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sjo-pill { background: white; padding: 12px 15px; border-radius: 12px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.sjo-limit-warning { color: #d90429 !important; font-weight: 800; margin-top: 10px; }
.sjo-contact-bar { margin-top: 25px; font-size: 0.85rem; font-weight: 700; opacity: 0.6; }

/* --- ANIMACJE I RESPONSIVE --- */
@keyframes sjo-text-shine { 0% { left: -100%; } 50%, 100% { left: 100%; } }
@keyframes sjo-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes sjo-pulse { 0% { box-shadow: 0 0 0 0 rgba(244, 208, 63, 0.5); } 70% { box-shadow: 0 0 0 15px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.sjo-jungle-light-fx { position: absolute; top: -30px; left: -30px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, transparent 70%); }

@media (max-width: 1024px) {
    .sjo-program-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
    .sjo-jungle-card-inner, .sjo-details-bar { flex-direction: column; text-align: center; }
    .sjo-jungle-img { order: -1; width: 60%; margin: 0 auto 10px auto; }
    .sjo-info-pills { grid-template-columns: 1fr; }
    .sjo-program-grid { grid-template-columns: 1fr; }
}/* End custom CSS */
