/* ============================================
   DESIGN SYSTEM - Professional Color Palette
   ============================================ */
:root {
    /* Primary Colors */
    --forest-green: #2C5F2D;
    --emerald: #4A9B5E;
    --sage: #7CB68E;
    
    /* Secondary Colors */
    --charcoal: #2B2D2F;
    --slate: #4A5568;
    --silver: #A0AEC0;
    
    /* Accent Colors */
    --gold: #D4AF37;
    --warm-beige: #F7F3E9;
    --cream: #FDFBF7;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F7FAFC;
    --gray-100: #EDF2F7;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --gray-700: #2D3748;
    --gray-900: #1A202C;
    
    /* Semantic Colors */
    --success: #48BB78;
    --warning: #ECC94B;
    --error: #F56565;
    
    /* Spacing System (8px base) */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 6rem;
    --space-8: 8rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--gray-900) 100%);
    color: var(--gray-300);
    padding: 10px 0;
    font-size: var(--text-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 44px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    height: 100%;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    line-height: 1;
}

.top-bar-left i {
    color: var(--emerald);
}

.top-bar-location {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.top-bar-location:hover {
    color: var(--white);
}

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}

.top-bar-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    line-height: 1;
}

.top-bar-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(74, 155, 94, 0.4);
    color: var(--white);
}

.top-bar-phone i {
    font-size: var(--text-base);
}

@media (max-width: 992px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    top: 44px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: var(--space-2) 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--gray-200);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: var(--space-1) 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-brand img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navbar-nav {
    gap: var(--space-1);
}

.nav-link {
    color: var(--slate) !important;
    font-weight: 500;
    font-size: var(--text-sm);
    letter-spacing: 0.01em;
    padding: var(--space-1) var(--space-2) !important;
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--forest-green) !important;
    background-color: var(--gray-50);
}

.nav-link.active {
    color: var(--forest-green) !important;
    background-color: rgba(44, 95, 45, 0.08);
}

/* ============================================
   HERO SECTION - WITH CUSTOM IMAGE
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg,
            rgba(44, 95, 45, 0.7) 0%,
            rgba(74, 155, 94, 0.1) 100%),
        url('/galeria/banner.webp') center/cover;
    overflow: hidden;
    padding: calc(var(--space-8) + 40px) 0 var(--space-7);
}

/* Animated overlay pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Decorative wave bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
    line-height: 1.1;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-xl);
    line-height: 1.6;
    opacity: 0.96;
    margin-bottom: var(--space-5);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--white);
    color: var(--forest-green);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-base);
    font-weight: 600;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    color: var(--forest-green);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-base);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-logo-container {
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-md);
}

.hero-logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon i {
    color: var(--white);
    font-size: var(--text-lg);
}

.hero-feature-text h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.hero-feature-text p {
    font-size: var(--text-sm);
    color: var(--slate);
    margin: 0;
}

/* Stats bar */
.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 2px solid var(--gray-200);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--forest-green);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: var(--slate);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--space-7) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-6);
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.section-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--slate);
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#o-nas {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.about-card p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-3);
}

.about-card p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.stat-item {
    text-align: center;
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--forest-green);
    display: block;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--slate);
    font-weight: 500;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
#produkty {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--emerald));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--emerald);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    transition: transform var(--transition-base);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-icon i {
    font-size: var(--text-3xl);
    color: var(--white);
}

.product-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.product-card p {
    font-size: var(--text-base);
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: var(--space-3);
    flex-grow: 1;
}

.product-price {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--forest-green);
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
}

.product-price small {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--slate);
}

.cta-section {
    text-align: center;
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    border-radius: var(--radius-xl);
    color: var(--white);
    margin-top: var(--space-5);
}

.cta-section h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.cta-section p {
    font-size: var(--text-lg);
    opacity: 0.95;
    margin-bottom: var(--space-4);
}

.btn-offer {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--white);
    color: var(--forest-green);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.btn-offer:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-2xl);
    color: var(--forest-green);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#galeria {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.8) 0%, rgba(74, 155, 94, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity var(--transition-base);
    padding: var(--space-4);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content h4 {
    color: var(--white);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-overlay-content p {
    color: var(--white);
    font-size: var(--text-base);
    opacity: 0.95;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SERVICE AREA SECTION
   ============================================ */
#obszar-dzialania {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.service-area-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.service-area-intro {
    text-align: center;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--gray-200);
}

.service-area-intro p {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

@media (max-width: 1400px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

.city-group {
    background: var(--gray-50);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.city-group h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-1);
    border-bottom: 2px solid var(--emerald);
}

.cities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cities-list li {
    font-size: var(--text-sm);
    color: var(--gray-700);
    padding: var(--space-1) 0;
    line-height: 1.5;
    border-bottom: 1px solid var(--gray-200);
}

.cities-list li:last-child {
    border-bottom: none;
}

.cities-list li strong {
    color: var(--charcoal);
    font-weight: 600;
}

.cities-list-simple li {
    font-weight: 600;
    color: var(--charcoal);
}

.service-area-cta {
    text-align: center;
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    border-radius: var(--radius-lg);
    color: var(--white);
}

.service-area-cta p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    opacity: 0.95;
}

.service-area-cta .btn-primary {
    background: var(--white);
    color: var(--forest-green);
}

.service-area-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#kontakt {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
}

.contact-card {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    padding: var(--space-2);
    border-radius: var(--radius);
    transition: background-color var(--transition-fast);
}

.contact-item:hover {
    background-color: var(--gray-50);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: var(--text-lg);
}

.contact-text {
    flex: 1;
}

.contact-text p {
    margin: 0;
    color: var(--gray-700);
    font-size: var(--text-base);
    line-height: 1.5;
}

.contact-text a,
.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-text a:hover,
.footer-contact-item a:hover {
    color: var(--emerald);
}

.form-group {
    margin-bottom: var(--space-3);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-1);
}

.form-control {
    width: 100%;
    padding: var(--space-2);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: var(--text-base);
    font-family: inherit;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(74, 155, 94, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* RODO Checkbox */
.rodo-container {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    padding: 16px;
    background-color: #F7FAFC;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    margin-top: 8px;
    margin-bottom: 16px;
}

.rodo-checkbox {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    min-height: 22px;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    accent-color: #2C5F2D;
    cursor: pointer;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
}

.rodo-label {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.rodo-label a {
    color: #4A9B5E;
    text-decoration: underline;
    font-weight: 600;
}

.rodo-label a:hover {
    color: #2C5F2D;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
    border: 1px solid var(--gray-200);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--gray-900) 100%);
            color: var(--gray-300);
            padding: var(--space-7) 0 var(--space-4);
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--forest-green), var(--emerald), var(--gold));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-5);
            margin-bottom: var(--space-6);
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        .footer-section {
            padding: 0 var(--space-2);
        }

        .footer-logo {
            height: 60px;
            width: auto;
            max-width: 200px;
            margin-bottom: var(--space-3);
            filter: brightness(0) invert(1);
            transition: transform var(--transition-fast);
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .footer-description {
            font-size: var(--text-base);
            line-height: 1.6;
            color: var(--gray-400);
            margin-bottom: var(--space-4);
        }

        .footer-badges {
            display: flex;
            flex-direction: column;
            gap: var(--space-2);
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-1);
            background: rgba(255, 255, 255, 0.08);
            padding: var(--space-1) var(--space-2);
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--emerald);
            border: 1px solid rgba(74, 155, 94, 0.3);
        }

        .footer-badge i {
            font-size: var(--text-base);
        }

        .footer-heading {
            font-size: var(--text-lg);
            font-weight: 700;
            color: var(--white);
            margin-bottom: var(--space-3);
            position: relative;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--emerald);
            border-radius: var(--radius);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: var(--space-2);
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: var(--text-base);
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: var(--space-1);
        }

        .footer-links a:hover {
            color: var(--emerald);
            transform: translateX(4px);
        }

        .footer-links a::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--emerald);
            border-radius: 50%;
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: var(--space-2);
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: var(--space-2);
            color: var(--gray-400);
            font-size: var(--text-sm);
        }

        .footer-contact-item i {
            color: var(--emerald);
            font-size: var(--text-lg);
            width: 20px;
            flex-shrink: 0;
        }

        .footer-newsletter-text {
            font-size: var(--text-sm);
            color: var(--gray-400);
            line-height: 1.5;
            margin-bottom: var(--space-3);
        }

        .footer-newsletter {
            display: flex;
            gap: 0;
            margin-bottom: var(--space-4);
            max-width: 300px;
        }

        .newsletter-input {
            flex: 1;
            padding: var(--space-2);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius) 0 0 var(--radius);
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            font-size: var(--text-sm);
            transition: all var(--transition-fast);
        }

        .newsletter-input::placeholder {
            color: var(--gray-500);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--emerald);
            background: rgba(255, 255, 255, 0.1);
        }

        .newsletter-btn {
            padding: var(--space-2) var(--space-2);
            background: var(--emerald);
            border: 2px solid var(--emerald);
            border-radius: 0 var(--radius) var(--radius) 0;
            color: var(--white);
            cursor: pointer;
            transition: all var(--transition-base);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-btn:hover {
            background: var(--forest-green);
            border-color: var(--forest-green);
            transform: translateY(-2px);
        }

        .footer-social {
            display: flex;
            flex-direction: column;
            gap: var(--space-2);
        }

        .social-label {
            font-size: var(--text-sm);
            color: var(--gray-400);
            font-weight: 500;
        }

        .social-links {
            display: flex;
            gap: var(--space-2);
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all var(--transition-base);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            background: var(--emerald);
            transform: translateY(-4px) scale(1.1);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(74, 155, 94, 0.3);
        }

        .social-link i {
            font-size: var(--text-lg);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--space-4);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-2);
        }

        .footer-copyright {
            font-size: var(--text-sm);
            color: var(--gray-500);
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            gap: var(--space-3);
        }

        .footer-bottom-link {
            font-size: var(--text-sm);
            color: var(--gray-500);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer-bottom-link:hover {
            color: var(--emerald);
        }

        .max-footer-center {
            text-align: center;
            width: 100%;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 8px !important;
        }
        .max-footer-link {
            display: inline-flex !important;
            align-items: center !important;
            gap: 6px !important;
            text-decoration: none !important;
            color: inherit !important;
            font-family: inherit !important;
            font-size: inherit !important;
            font-weight: inherit !important;
            line-height: 1 !important;
        }
        .max-footer-logo {
            height: 24px !important;
            width: auto !important;
            display: block !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 70px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--forest-green), var(--emerald));
            color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-xl);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-2xl);
            background: linear-gradient(135deg, var(--emerald), var(--forest-green));
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top i {
            font-size: var(--text-xl);
            font-weight: bold;
        }

        /* Custom Popup Notifications */
        .custom-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -70%);
            z-index: 9999;
            min-width: 300px;
            max-width: 400px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .custom-popup.show {
            opacity: 1;
            transform: translateY(0);
        }

        .custom-popup.success {
            --popup-color: var(--emerald);
        }

        .custom-popup.error {
            --popup-color: var(--error);
        }

        .popup-content {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            border-left: 4px solid var(--popup-color);
            overflow: hidden;
        }

        .popup-content {
            display: flex;
            align-items: flex-start;
            gap: var(--space-2);
            padding: var(--space-3);
        }

        .popup-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-icon i {
            font-size: var(--text-xl);
            color: var(--popup-color);
        }

        .popup-text {
            flex: 1;
        }

        .popup-text h4 {
            font-size: var(--text-base);
            font-weight: 600;
            color: var(--gray-900);
            margin: 0 0 var(--space-1) 0;
        }

        .popup-text p {
            font-size: var(--text-sm);
            color: var(--gray-700);
            margin: 0;
            line-height: 1.4;
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-4);
            }

            .footer-section {
                text-align: center;
                padding: 0;
            }

            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-logo {
                margin: 0 auto var(--space-3);
            }

            .footer-badges {
                justify-content: center;
            }

            .footer-links a {
                justify-content: center;
            }

            .footer-contact {
                align-items: center;
            }

            .footer-newsletter {
                margin: 0 auto;
                max-width: 100%;
            }

            .footer-social {
                align-items: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: var(--space-3);
            }

            .footer-bottom-links {
                justify-content: center;
            }
        }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    padding: var(--space-4);
    background: var(--white);
}

.lightbox-caption h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-1);
}

.lightbox-caption p {
    font-size: var(--text-base);
    color: var(--slate);
    margin: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: bold;
    color: var(--charcoal);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    background: var(--error);
    color: var(--white);
}

.lightbox-close:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--emerald);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-7: 4rem;
        --space-8: 5rem;
    }

    .navbar-brand img {
        height: 36px;
        max-width: 150px;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--space-6) + 60px) 0 var(--space-6);
    }

    .hero::after {
        height: 50px;
    }

    .hero-buttons {
        flex-direction: column;
        padding-bottom: var(--space-4);
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: var(--space-5) 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-3);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .gallery-item {
        height: 250px;
    }

    .lightbox-container {
        padding: var(--space-2);
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: var(--text-xl);
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        padding: var(--space-3);
    }

    .lightbox-caption h3 {
        font-size: var(--text-lg);
    }

    .lightbox-caption p {
        font-size: var(--text-sm);
    }
}
