/* =========================================
   GŁÓWNY PLIK STYLÓW (style.css) - O-OGRODY
   ========================================= */

/* --- ZMIENNE --- */
:root {
    --primary-green: #7bc043;
    --primary-dark: #002b49;
    --text-color: #333;
    --bg-gray: #f4f6f8;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --dev-green: #22c55e;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: var(--text-color); overflow-x: hidden; position: relative; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- STYLE OGÓLNE --- */
.bg-white { background-color: var(--white); }
.bg-gray { background-color: var(--bg-gray); border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; }
.section { padding: 90px 0; }
.section-title { font-size: 2.2rem; color: var(--primary-dark); margin-bottom: 20px; font-weight: 700; text-align: center; }
.section-subtitle { text-align: center; max-width: 700px; margin: 0 auto 50px; color: #666; }
.section-tag { color: var(--primary-green); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 10px; text-align: center;}
.category-title { font-size: 1.8rem; color: var(--primary-dark); margin: 60px 0 30px; position: relative; padding-bottom: 15px; }
.category-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary-green); }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white-opacity { color: rgba(255,255,255,0.8); }
.highlight-text { color: var(--primary-green); }
.mt-20 { margin-top: 20px; }

/* --- TOP BAR --- */
.top-bar { background-color: var(--primary-dark); color: var(--white); padding: 8px 0; font-size: 0.8rem; z-index: 1002; position: relative; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-info span, .top-contact a { margin-right: 15px; display: inline-flex; align-items: center; gap: 6px; }
.top-contact a:hover { color: var(--primary-green); }

/* --- NAWIGACJA --- */
.navbar { 
    background: var(--white); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    width: 100%; 
    min-height: 100px; 
    padding: 10px 0;
    z-index: 1100; 
    display: flex; 
    align-items: center; 
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { display: flex; align-items: center; }
.logo img { height: auto; max-height: 90px; width: auto; transition: var(--transition); }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--primary-dark); font-size: 0.85rem; text-transform: uppercase; padding: 5px 0; position: relative; }
.nav-links a:hover { color: var(--primary-green); }
.nav-links a.active { color: var(--primary-green); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--primary-green); }

/* --- SZYBKI KONTAKT (DROPDOWN) --- */
.quick-contact-wrapper {
    position: relative;
    margin-left: 10px;
    padding-bottom: 10px;
    margin-bottom: -10px;
}
.btn-quick {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 25px;
    transition: 0.3s;
    font-weight: 700 !important;
    display: inline-block;
}
.btn-quick:hover {
    background: #68a536;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 192, 67, 0.4);
}
.contact-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 20px;
    z-index: 9999;
    margin-top: 10px;
    text-align: left;
    border-top: 4px solid var(--primary-green);
}
.contact-dropdown::after { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: transparent; }
.contact-dropdown::before { content: ''; position: absolute; top: -8px; right: 30px; width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid var(--primary-green); }

.quick-contact-wrapper:hover .contact-dropdown { display: block; animation: fadeInDrop 0.3s ease; }
@keyframes fadeInDrop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.dropdown-title { font-size: 0.85rem; color: #888; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.dropdown-item { display: flex !important; align-items: center; gap: 10px; color: var(--primary-dark) !important; font-size: 1rem !important; padding: 8px 0 !important; text-transform: none !important; border-bottom: none !important; font-weight: 500 !important; }
.dropdown-item:hover { color: var(--primary-green) !important; transform: translateX(5px); }
.dropdown-item i { font-size: 1.2rem; width: 25px; text-align: center; }

/* --- HAMBURGER MENU --- */
.hamburger { display: none; cursor: pointer; z-index: 3001; }
.hamburger div { width: 25px; height: 3px; background-color: var(--primary-dark); margin: 5px; transition: var(--transition); }
.hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.toggle .line2 { opacity: 0; }
.hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1090; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

/* --- HERO SLIDER & PAGE HEADER --- */
.hero-slider, .page-header { height: 85vh; min-height: 550px; position: relative; overflow: hidden; }
.page-header { height: 50vh; min-height: 400px; background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; display: flex; justify-content: center; align-items: center; text-align: center; color: var(--white); z-index: 1; }
.slide.active { opacity: 1; z-index: 2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,43,73,0.7), rgba(0,43,73,0.4)); z-index: 1; }
.hero-content { position: relative; z-index: 3; max-width: 800px; padding: 20px; }
.hero-content h1, .page-header h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 800; text-transform: uppercase; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-content p, .page-header p { font-size: 1.3rem; margin-bottom: 30px; font-weight: 400; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-main { background: var(--primary-green); color: var(--white); border: 2px solid var(--primary-green); padding: 15px 40px; border-radius: 50px; font-weight: 700; text-transform: uppercase; cursor: pointer; display: inline-block; transition: var(--transition); }
.btn-main:hover { background: transparent; color: var(--primary-green); }
.relative-z { position: relative; z-index: 2; }

/* --- O NAS --- */
.about-flex-container { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 300px; }
.about-features { flex: 1; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lead-text { font-size: 1.1rem; border-left: 4px solid var(--primary-green); padding-left: 15px; margin-bottom: 20px; color: #444; }
.text-content p { margin-bottom: 15px; }
.owner-box { display: flex; align-items: center; gap: 20px; margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.owner-icon i { font-size: 3rem; color: var(--primary-green); }
.feature-box { background: var(--white); padding: 25px; border-radius: 10px; box-shadow: var(--shadow); text-align: center; border-bottom: 4px solid transparent; transition: transform 0.3s ease, border-color 0.3s ease; }
.feature-box:hover { border-bottom: 4px solid var(--primary-green); transform: translateY(-8px); }
.feature-box i { font-size: 2rem; color: var(--primary-green); margin-bottom: 10px; }
.about-grid-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); position: relative; z-index: 1; }
.owner-quote-box { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); position: relative; z-index: 2; margin-top: -40px; margin-left: 40px; border-left: 5px solid var(--primary-green); }
.quote-icon { font-size: 2rem; color: var(--primary-green); opacity: 0.3; position: absolute; top: 20px; left: 20px; }
.owner-quote-box p { font-style: italic; color: #555; margin-bottom: 15px; position: relative; z-index: 1; }
.owner-sig strong { display: block; color: var(--primary-dark); font-size: 1.1rem; }
.owner-sig span { font-size: 0.85rem; color: #777; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.highlight-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--primary-dark); font-size: 0.95rem; }
.highlight-item i { color: var(--primary-green); font-size: 1.1rem; }

/* --- 4 PORY ROKU (KARTY NA STRONIE GŁÓWNEJ) --- */
.cycles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 50px; }
.cycle-card { background: var(--white); padding: 30px 20px; border-radius: 15px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid transparent; }
.cycle-card:hover { transform: translateY(-10px); border-color: var(--primary-green); }
.cycle-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; color: var(--white); margin: 0 auto 20px; }
.cycle-icon.spring { background-color: #4caf50; }
.cycle-icon.summer { background-color: #ff9800; }
.cycle-icon.autumn { background-color: #ff5722; }
.cycle-icon.winter { background-color: #03a9f4; }

/* --- USŁUGI --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 30px; border-radius: 15px; box-shadow: var(--shadow); border: 1px solid transparent; transition: var(--transition); }
.service-card:hover { border-color: var(--primary-green); transform: translateY(-5px); }
.icon-circle { width: 60px; height: 60px; background: rgba(123, 192, 67, 0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--primary-green); margin-bottom: 20px; }
.service-card ul li { margin-bottom: 8px; color: #555; display: flex; gap: 10px; }
.service-card i { color: var(--primary-green); }

/* --- LICZNIKI --- */
.counters-section { background: url('https://images.unsplash.com/photo-1592417817098-8fd3d9eb14a5?auto=format&fit=crop&q=80') fixed center; background-size: cover; padding: 100px 0; color: var(--white); position: relative; text-align: center; }
.overlay-counters { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 43, 73, 0.9); }
.counters-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; }
.counter-item i { font-size: 3rem; color: var(--primary-green); margin-bottom: 15px; display: block; }
.counter-number { display: block; font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 10px; }

/* --- CTA BANER --- */
.cta-parallax-section { position: relative; background: url('https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&q=80') center/cover no-repeat fixed; padding: 140px 20px; text-align: center; color: var(--white); overflow: hidden; }
.cta-overlay-dark { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to right, rgba(0,43,73,0.9), rgba(0,43,73,0.7)); z-index: 1; }
.cta-content { position: relative; z-index: 2; }
.cta-parallax-section h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.cta-actions { margin-top: 40px; margin-bottom: 20px; }
.cta-note { color: #ccc; font-size: 0.9rem; margin-top: 15px; }
.large-btn { padding: 20px 50px; font-size: 1.3rem; display: inline-flex; align-items: center; gap: 15px; background: var(--primary-green); color: var(--white); border-radius: 50px; font-weight: 700; box-shadow: 0 15px 30px rgba(123, 192, 67, 0.4); }
.pulse-anim { animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(123, 192, 67, 0.7); } 70% { box-shadow: 0 0 0 25px rgba(123, 192, 67, 0); } 100% { box-shadow: 0 0 0 0 rgba(123, 192, 67, 0); } }

/* --- STOPKA --- */
.modern-footer { background: #0b121c; color: #ccc; padding: 80px 0 0; position: relative; }
.modern-footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, var(--primary-green), var(--dev-green)); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { width: 160px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-desc { font-size: 0.9rem; line-height: 1.6; color: #888; }
.footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-green); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { transition: 0.3s; }
.footer-links a:hover { color: var(--primary-green); transform: translateX(5px); display: inline-block;}
.contact-details p { margin-bottom: 15px; display: flex; gap: 15px; color: #ccc; align-items: center; }
.contact-details i { color: var(--primary-green); font-size: 1.1rem; }
.footer-bottom { background: #06090e; padding: 25px 0; text-align: center; font-size: 0.85rem; border-top: 1px solid #1a222d; color: #777; }
.dev-link { text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; margin-left: 5px; }
.brace { color: var(--dev-green); transition: 0.3s; font-weight: 800; }
.dev-name { color: #ffffff; transition: 0.3s; }
.dev-link:hover .brace { color: #ffffff; }
.dev-link:hover .dev-name { color: var(--dev-green); }

/* --- PŁYWAJĄCE ELEMENTY --- */
.scroll-top-left { position: fixed; bottom: 30px; left: 30px; background: var(--primary-dark); color: var(--white); width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 9999; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.scroll-top-left.show { opacity: 1; visibility: visible; }
.scroll-top-left:hover { background: var(--primary-green); transform: translateY(-5px); }
.phone-float { position: fixed; bottom: 30px; right: 30px; background: var(--primary-green); color: var(--white); width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; box-shadow: 0 0 20px rgba(123, 192, 67, 0.6); z-index: 9999; animation: pulse-green 2s infinite; opacity: 1; }

/* --- BANER COOKIES --- */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background-color: var(--primary-dark); color: var(--white); padding: 20px 0; z-index: 99999; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); transition: bottom 0.5s ease-in-out; }
.cookie-banner.show { bottom: 0; }
.cookie-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cookie-icon { font-size: 3rem; color: var(--primary-green); flex-shrink: 0; }
.cookie-text { flex-grow: 1; }
.cookie-text h3 { font-size: 1.2rem; margin-bottom: 5px; font-weight: 700; }
.cookie-text p { font-size: 0.9rem; color: #ddd; line-height: 1.4; margin: 0; }
.cookie-text a { color: var(--primary-green); text-decoration: underline; font-weight: 600; }
.cookie-text a:hover { color: var(--white); text-decoration: none; }
.cookie-btn-box { flex-shrink: 0; }
.btn-cookie { background-color: var(--primary-green); color: var(--white); border: none; padding: 12px 35px; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); font-family: 'Montserrat', sans-serif; }
.btn-cookie:hover { background-color: #68a536; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

/* =========================================
   ZAKŁADKA "4 PORY ROKU"
   ========================================= */
.seasons-nav { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.season-btn { background: #ffffff; border: 2px solid #e0e0e0; padding: 15px 30px; font-size: 1.1rem; font-weight: 600; color: var(--text-color); border-radius: 50px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; }
.season-btn i { color: var(--primary-green); font-size: 1.2rem; }
.season-btn:hover { border-color: var(--primary-green); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.season-btn.active { background: var(--primary-green); border-color: var(--primary-green); color: var(--white); box-shadow: 0 10px 20px rgba(123, 192, 67, 0.3); }
.season-btn.active i { color: var(--white); }
.season-pane { display: none; opacity: 0; }
.season-pane.active { display: block; animation: fadeInPane 0.5s forwards; }
@keyframes fadeInPane { to { opacity: 1; } }
.season-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; text-align: left; }
.season-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); object-fit: cover; max-height: 450px; }
.season-list li { margin-bottom: 12px; font-size: 1.05rem; display: flex; align-items: flex-start; gap: 12px; }
.season-list li i { color: var(--primary-green); margin-top: 4px; }

/* =========================================
   ZAKŁADKA "OFERTA" (STATYCZNE KARTY)
   ========================================= */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; justify-content: center; }
.offer-card { background: var(--white); padding: 40px 30px; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.06); border-top: 5px solid var(--primary-green); text-align: center; display: flex; flex-direction: column; height: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.offer-card:hover { transform: translateY(-7px); box-shadow: 0 20px 40px rgba(123, 192, 67, 0.15); }
.offer-card h3 { color: var(--primary-dark); font-size: 1.4rem; margin-bottom: 20px; font-weight: 700; line-height: 1.3; }
.offer-desc { font-size: 0.95rem; color: #666; margin-bottom: 30px; line-height: 1.5; }
.offer-list { text-align: left; margin-bottom: 35px; flex-grow: 1; }
.offer-list li { position: relative; padding-left: 32px; margin-bottom: 15px; color: var(--text-color); font-weight: 500; font-size: 0.95rem; }
.offer-list li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--primary-green); position: absolute; left: 0; top: 3px; font-size: 1.1rem; }
.card-btn-wrapper { margin-top: auto; }
.btn-green { background: var(--primary-green); color: var(--white); padding: 14px 35px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(123, 192, 67, 0.3); }
.btn-green:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 43, 73, 0.3); color: var(--white); }
.btn-green.list-btn { background: transparent; border: 2px solid var(--primary-green); color: var(--primary-green); box-shadow: none; }
.btn-green.list-btn:hover { background: var(--primary-green); color: var(--white); }

/* =========================================
   ZAKŁADKA "KONTAKT"
   ========================================= */
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: -80px; position: relative; z-index: 10; margin-bottom: 50px;}
.contact-card { background: #ffffff; padding: 50px 30px; border-radius: 20px; text-align: center; box-shadow: 0 15px 40px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #f0f0f0; display: flex; flex-direction: column; align-items: center; justify-content: space-between; height: 100%;}
.contact-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.12); border-color: var(--primary-green); }
.contact-icon-box { width: 80px; height: 80px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; color: #ffffff; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.phone-style { background: linear-gradient(135deg, #7bc043, #5a912e); }
.email-style { background: linear-gradient(135deg, #002b49, #00406b); }
.loc-style { background: linear-gradient(135deg, #ff9800, #f57c00); }
.contact-card h3 { font-size: 1.5rem; color: #002b49; margin-bottom: 10px; font-weight: 700; }
.contact-sub { font-size: 0.9rem; color: #888; margin-bottom: 15px; line-height: 1.5; }
.contact-data { font-size: 1.3rem; font-weight: 800; color: #333; margin-bottom: 25px; }
.contact-data.email-data { font-size: 1.1rem; word-break: break-all; }
.btn-main.small-btn { padding: 12px 35px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; border-radius: 50px; text-decoration: none; display: inline-block; color: #fff; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: none; cursor: pointer;}
.btn-main.small-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); filter: brightness(1.1); }
.info-badge { background: #f4f6f8; padding: 8px 20px; border-radius: 20px; font-size: 0.9rem; color: #666; font-weight: 600; border: 1px solid #e0e0e0; }
.map-container { border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border: 5px solid #ffffff; margin-top: 20px; }

/* =========================================
   ZAKŁADKA "INSPIRACJE" (GALERIA)
   ========================================= */
.meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.meta-card { background: var(--white); border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden; transition: transform 0.3s ease; }
.meta-card:hover { transform: translateY(-5px); }
.meta-images { display: flex; height: 250px; }
.meta-img { flex: 1; position: relative; overflow: hidden; }
.meta-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.meta-card:hover .meta-img img { transform: scale(1.1); }
.meta-label { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.6); color: white; padding: 2px 10px; font-size: 0.7rem; font-weight: 700; border-radius: 4px; z-index: 2; }
.meta-img.after { border-left: 2px solid white; } .meta-img.after .meta-label { background: var(--primary-green); }
.meta-desc { padding: 25px; text-align: center; }
.meta-desc h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary-dark); }
.gallery-filters { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-filters span { font-weight: 600; cursor: pointer; color: #888; padding-bottom: 5px; border-bottom: 2px solid transparent; transition: 0.3s; }
.gallery-filters span.active, .gallery-filters span:hover { color: var(--primary-green); border-bottom: 2px solid var(--primary-green); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { position: relative; height: 250px; border-radius: 10px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 43, 73, 0.7); display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay i { font-size: 2rem; margin-bottom: 10px; color: var(--primary-green); }

/* --- LIGHTBOX --- */
.lightbox { display: none; position: fixed; z-index: 99999; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.lightbox-content { margin: auto; display: block; width: 80%; max-width: 900px; max-height: 80vh; object-fit: contain; border-radius: 5px; animation: zoomIn 0.3s; }
#lightbox-caption { margin: auto; display: block; width: 80%; max-width: 700px; text-align: center; color: #ccc; padding: 10px 0; height: 150px; font-size: 1.1rem; }
.close-lightbox { position: absolute; top: 25px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
.close-lightbox:hover, .close-lightbox:focus { color: var(--primary-green); text-decoration: none; cursor: pointer; }
.prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -50px; color: white; font-weight: bold; font-size: 30px; transition: 0.3s ease; border-radius: 0 3px 3px 0; user-select: none; z-index: 100000; text-decoration: none; }
.next { right: 0; border-radius: 3px 0 0 3px; } .prev { left: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: rgba(123, 192, 67, 0.8); color: white; }
@keyframes zoomIn { from {transform:scale(0)} to {transform:scale(1)} }

/* --- ANIMACJE --- */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: 0.6s ease-out; }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: 0.6s ease-out; }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: 0.6s ease-out; }
.appear { opacity: 1; transform: translate(0); }

/* =========================================
   MEDIA QUERIES (TELEFONY I TABLETY)
   ========================================= */
@media (max-width: 1024px) {
    /* OGÓLNE KOREKTY */
    .page-header h1 { font-size: 2rem; }
    .cta-parallax-section h2 { font-size: 2rem; }
    .top-info { display: none; }
    .top-contact { width: 100%; justify-content: center; }
    .logo img { max-height: 70px; }
    .navbar { padding: 5px 0; min-height: 70px; }

    /* MENU MOBILNE - WĄSKIE (MAX 300px) */
    .hamburger { display: block; }
    .nav-links { 
        position: fixed; 
        right: -100%; 
        top: 0; 
        height: 100vh; 
        width: 75vw; /* Zajmuje 75% szerokości ekranu na tel. */
        max-width: 300px; /* Ale nigdy więcej niż 300px */
        background: #ffffff; 
        flex-direction: column; 
        align-items: flex-start; 
        padding: 80px 25px 20px 25px; 
        transition: right 0.4s ease; 
        z-index: 3000; 
        box-shadow: -5px 0 20px rgba(0,0,0,0.2); 
        overflow-y: auto; 
    }
    .nav-links.open { right: 0; }
    
    .nav-links a { 
        color: var(--primary-dark) !important; 
        font-size: 1.1rem; 
        display: block; 
        border-bottom: 1px solid #eee; 
        padding: 15px 0; 
        width: 100%; 
    }
    .nav-links a.active::after { display: none; }

    /* SZYBKI KONTAKT W MENU MOBILNYM */
    .quick-contact-wrapper { margin-left: 0; width: 100%; margin-top: 15px; }
    .btn-quick { width: 100%; text-align: center; }
    .contact-dropdown { 
        position: static; 
        width: 100%; 
        box-shadow: none; 
        border: 1px solid #eee; 
        display: none; 
        margin-top: 5px; 
        padding: 10px; 
    }
    
    .quick-contact-wrapper:hover .contact-dropdown,
    .quick-contact-wrapper:active .contact-dropdown { display: none; }
    
    /* Klasa dodawana przez JS */
    .contact-dropdown.show-dropdown { display: block !important; }
    
    .contact-dropdown::after, .contact-dropdown::before { display: none; }
    .dropdown-item { font-size: 0.9rem !important; padding: 10px 0 !important; }
    
    /* UKŁADY DLA PODSTRON - JEDNA KOLUMNA */
    .about-flex-container { flex-direction: column; gap: 30px; }
    .about-text, .about-features { width: 100%; }
    .about-grid-layout { display: flex !important; flex-direction: column !important; gap: 40px !important; }
    .about-img { width: 100% !important; margin-bottom: 0 !important; }
    .owner-quote-box { margin: 20px 0 0 0 !important; width: 100% !important; left: 0 !important; transform: none !important; position: relative !important; }
    
    .season-grid { display: flex !important; flex-direction: column !important; gap: 30px !important; }
    .season-img { order: -1 !important; width: 100% !important; }
    .season-btn { padding: 10px 15px; font-size: 0.9rem; flex-grow: 1; justify-content: center;}
    
    .cards-grid { grid-template-columns: 1fr; }
    
    .footer-grid, .counters-grid { grid-template-columns: 1fr; gap: 30px; }
    .coop-flex { flex-direction: column; }
    .coop-map-text { width: 100%; }
    
    .contact-cards-grid { margin-top: 30px; grid-template-columns: 1fr; gap: 30px; }
    .contact-card { padding: 30px 20px; }

    /* BANER COOKIES NA TELEFONIE */
    .cookie-container { flex-direction: column; text-align: center; gap: 15px; }
    .cookie-icon { font-size: 2.5rem; }
    .cookie-btn-box { width: 100%; }
    .btn-cookie { width: 100%; }
    
    /* --- NAPRAWA PRZYCISKU ZADZWOŃ (CTA) NA TELEFONACH --- */
        @media (max-width: 768px) {
        .large-btn {
        padding: 15px 10px !important; /* Mniejsze marginesy wewnątrz przycisku */
        font-size: 1.05rem !important; /* Nieco mniejsza czcionka */
        white-space: nowrap !important; /* Wymuszenie tekstu w jednej linii */
        width: 100% !important; /* Rozciągnięcie na szerokość ekranu */
        justify-content: center !important; /* Wyśrodkowanie */
        letter-spacing: -0.5px; /* Delikatne zacieśnienie liter, by numer na 100% się zmieścił */
    }
}
}