/**
 * LemDrĂłb - Main Stylesheet (FIXED)
 * Ultra modern, performance optimized
 */

/* SMART IMAGE LOADING - ukrywa "skokowe/ćwiartkowe" dekodowanie WebP */
img[data-smart-load="waiting"] {
    opacity: 0 !important;
    will-change: opacity;
}
img[data-smart-load="loaded"] {
    opacity: 1 !important;
    transition: opacity 0.4s ease-out !important;
}

/* ========================================
   VARIABLES & RESET
======================================== */
:root {
    /* Nowa kolorystyka: ZIELEŃ #67B805 */
    --color-primary: #67B805;
    --color-primary-dark: #529304;
    --color-secondary: #2C3E50;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F4F9F0;
    --color-text: #1A2F1A;
    --color-text-light: #506650;
    --color-white: #FFFFFF;
    --color-error: #E63946;
    --color-success: #67B805;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 50px;
    
    --shadow-sm: 0 2px 8px rgba(32, 47, 28, 0.08);
    --shadow-md: 0 8px 24px rgba(32, 47, 28, 0.12);
    --shadow-lg: 0 16px 48px rgba(32, 47, 28, 0.16);
    --shadow-accent: 0 10px 30px rgba(103, 184, 5, 0.3);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   BASE STYLES
======================================== */
.section {
    padding: 5rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(103, 184, 5, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

.bg-alt {
    background: var(--color-bg-alt);
}

.text-center {
    text-align: center;
}

.highlight, .accent, .text-accent {
    color: var(--color-primary);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(103, 184, 5, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(103, 184, 5, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(103, 184, 5, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(103, 184, 5, 0.05) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f4a900' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-badge {
        display: inline-flex;
        margin: 0 auto 1.5rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(103, 184, 5, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 800;
}

.hero-title .highlight {
    color: var(--color-primary);
    display: block;
}

.hero-title .sub {
    font-size: 0.5em;
    color: var(--color-text-light);
    font-weight: 400;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .hero-cta {
        justify-content: center;
    }
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

@media (max-width: 640px) {
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

@media (max-width: 1024px) {
    .hero-visual {
        order: -1;
        min-height: 400px;
        margin-bottom: 2rem;
    }
}

.chicken-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.chicken-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.chicken-card.main {
    width: 70%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.chicken-card.secondary {
    width: 45%;
    left: 0;
    bottom: 10%;
    z-index: 3;
    border: 4px solid white;
}

.chicken-card img {
    width: 100%;
    height: auto;
    display: block;
}

.chicken-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.chicken-card.main .chicken-info {
    text-align: right;
    padding-left: 45%;
    background: linear-gradient(to top right, transparent, rgba(0,0,0,0.8) 50%);
}

.breed-tag {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.egg-color {
    font-size: 0.85rem;
    color: #FFFFFF !important;
    opacity: 1 !important;
}

/* Jajka - emoji przez CSS */
.egg-color::before {
    content: "🥚";
    display: inline-block;
    margin-right: 0.25rem;
}

.egg-color.brown::before {
    filter: sepia(100%) saturate(150%) brightness(70%) hue-rotate(-20deg);
}

.location-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
    z-index: 4;
}

@media (max-width: 640px) {
    .hero-grid {
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-visual {
        display: none !important;
    }
    
    .hero-badge {
        display: none !important;
    }
    
    .hero-content {
        padding: 2rem 0;
    }

    .hero-title {
        margin-top: 0;
    }
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(103, 184, 5, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   MAP SECTION
======================================== */
.map-section {
    background: var(--color-bg);
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

#map {
    width: 100%;
    height: 100%;
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}



.map-info h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.direction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dir-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.dir-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.dir-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.dir-card h4 {
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.dir-card p {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.dir-route {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Cities Cloud */
.cities-cloud {
    margin-top: 3rem;
    text-align: center;
}

.cloud-title {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.cloud-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.city-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--color-bg-alt);
    border-radius: var(--radius-xl);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.city-tag:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.city-tag.more {
    background: var(--color-bg-alt);
    color: var(--color-text-light);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    opacity: 0.6;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ========================================
   FLOATING CTA
======================================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    transform: translateY(200px);
    transition: transform 0.3s ease;
}

.floating-cta.active {
    transform: translateY(0);
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(103, 184, 5, 0.4);
}

@media (max-width: 768px) {
    .floating-cta {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .floating-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   MODAL
======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-light);
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-error);
    color: white;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group.checkbox input {
    margin-top: 0.25rem;
}

.form-group.checkbox label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.form-group.checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-error {
    background: #fee;
    color: var(--color-error);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-success {
    background: #efe;
    color: var(--color-success);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* ========================================
   CITY PAGE STYLES
======================================== */
.city-page .city-hero {
    background: var(--color-white);
    color: var(--color-text);
    padding: 10rem 0 5rem;
    border-bottom: 1px solid var(--color-bg-alt);
    text-align: left;
}

.city-page .city-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 800;
}

.city-page .city-hero .lead {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumbs ol {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    opacity: 0.5;
}

.breadcrumbs a {
    color: var(--color-text-light);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.city-content {
    background: var(--color-white);
    padding: 4rem 0;
}

.city-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .city-grid {
        grid-template-columns: 1fr;
    }
}

.city-main article {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.city-main h2 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.city-main h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin: 1.5rem 0 0.75rem;
}

.city-main p {
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.city-main ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.city-main li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.city-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 968px) {
    .city-sidebar {
        position: static;
    }
}

.widget {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.widget h3 {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.widget-contact p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.widget-contact a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.check-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem !important;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* ========================================
   NAVIGATION MOBILE
======================================== */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .nav, .floating-cta, .modal, .footer {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
}

/* ========================================
   ACCESSIBILITY
======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10001;
}

.skip-link:focus {
    top: 0;
}


/* ========================================
   FORM STYLES (Additional)
======================================== */
.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: #efe;
    color: var(--color-success);
    display: block;
}

.form-message.error {
    background: #fee;
    color: var(--color-error);
    display: block;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.modal-subtitle {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.lead-form {
    margin-top: 1rem;
}


/* ========================================
   FORM SUCCESS STYLES
======================================== */
.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success h4 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-text-light);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* ========================================
   SPLIT SLIDER (SzczegĂłĹ‚y)
======================================== */
.split-section {
    padding: 0;
    background: var(--color-bg);
}

.split-slider-container {
    display: flex;
    min-height: 80vh;
}

@media (max-width: 968px) {
    .split-slider-container {
        flex-direction: column;
    }
}

.split-left {
    flex: 1;
    padding: 6rem 4rem 6rem max(2rem, calc((100vw - 1200px) / 2));
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 968px) {
    .split-left {
        padding: 4rem 2rem;
    }
}

.split-slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 500px;
}

.split-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.slide-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.2;
    margin-bottom: 1rem;
    display: block;
    font-family: var(--font-heading);
}

.split-slide h3 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.split-slide p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

.feature-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.split-right {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.split-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.split-image.active {
    opacity: 1;
    visibility: visible;
}

.split-nav {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.split-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.split-nav-btn.active {
    background: var(--color-primary);
    color: white;
}

/* ========================================
   MAP WRAPPER & GOOGLE MAPS
======================================== */
.map-wrapper {
    position: relative;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.map-container {
    width: 100%;
    height: 100%;
    background: var(--color-bg-alt);
}

#map {
    z-index: 1;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
}

@media (max-width: 768px) {
    .map-overlay {
        top: auto;
        bottom: 2rem;
        left: 1rem;
        right: 1rem;
    }
}

.map-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 300px;
}

.map-card h4 {
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.map-card p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.google-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 3rem 0;
}

.google-map-section {
    background: var(--color-bg-alt);
}



/* ========================================
   FOOTER COMPACT STYLES
======================================== */
.footer-contact address p {
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.footer-contact h4 {
    margin-bottom: 0.75rem;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact .company-name {
    margin-bottom: 0.5rem;
}

.footer-contact .footer-phone-wrap {
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
}

.footer-phone {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* CTA BOX - bez promocji, tylko kontakt */
.cta-box:has(h4:contains("Promocja")),
.cta-box:has(p:contains("rabat")),
.cta-box:has(p:contains("Rabat")) {
    display: none !important;
}

/* Google Maps w sidebarze */
.widget-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    border: none;
}

/* BREED CARDS - lepsze style */
.breed-card {
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(145deg, #fff 0%, var(--color-bg-alt) 100%);
}

.breed-card h4 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.breed-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    padding-bottom: 0.75rem;
    border-bottom: 2px dashed var(--color-primary);
    margin-bottom: 1rem;
}

/* BLOCKQUOTE - opinie */
blockquote {
    background: linear-gradient(135deg, #fff 0%, var(--color-bg) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 1.5rem 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 3.5rem;
    color: var(--color-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(244,169,0,0.2);
    font-weight: 600;
    color: var(--color-secondary);
}


/* ========================================
   CITY LINKS SECTION (Linkowanie wewnętrzne)
======================================== */
.city-links-section {
    background: var(--color-bg-alt);
    padding: 4rem 0;
}

.city-links-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.city-links-title {
    font-size: 1.75rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 0.75rem;
}

.city-links-desc {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.city-links-details {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.city-links-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-secondary);
    list-style: none;
    transition: background 0.2s;
}

.city-links-summary:hover {
    background: var(--color-bg);
}

.city-links-summary::-webkit-details-marker {
    display: none;
}

.city-links-summary svg {
    transition: transform 0.3s ease;
}

.city-links-details[open] .city-links-summary svg {
    transform: rotate(180deg);
}

.city-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid var(--color-bg-alt);
}

.city-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.city-link-card:hover {
    background: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.city-link-card:hover .city-link-name {
    color: var(--color-primary);
}

.city-link-name {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.city-link-arrow {
    color: var(--color-primary);
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.city-link-card:hover .city-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.city-links-all {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--color-bg-alt);
}

@media (max-width: 768px) {
    .city-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .city-link-card {
        padding: 0.75rem 1rem;
    }
    
    .city-links-title {
        font-size: 1.4rem;
    }
}


/* ========================================
   SEO CONTENT SECTION (Keyword Rich)
======================================== */
.seo-content-section {
    background: var(--color-bg);
    padding: 5rem 0;
}

.seo-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.seo-content-block {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44, 36, 27, 0.06);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.seo-content-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44, 36, 27, 0.1);
}

.seo-content-block h3 {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.seo-content-block p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.seo-content-block strong {
    color: var(--color-secondary);
}

.seo-cities-grid {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #5a2d0c 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.seo-cities-grid h4 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

.seo-cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.seo-city-link {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.seo-city-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-content-block {
        padding: 1.25rem;
    }
    
    .seo-cities-grid {
        padding: 1.5rem;
    }
    
    .seo-cities-list {
        gap: 0.5rem;
    }
    
    .seo-city-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}


/* ========================================
   ACCORDION - Sekcja Informacje
======================================== */
.accordion-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-alt);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-secondary);
    list-style: none;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: var(--color-bg);
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item[open] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text);
    line-height: 1.7;
}

.accordion-content p {
    margin: 0;
}

/* ========================================
   CONTACT GRID - Sekcja Kontakt
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--color-bg-alt);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.contact-card h4 {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .accordion-content {
        padding: 0 1.25rem 1.25rem;
    }
}
