  /* --- ZMIENNE KOLORYSTYCZNE (Na wz�r przes�anego obrazka) --- */
        :root {
            --primary-green: #1a3c34; /* Ciemna ziele� */
            --secondary-green: #264d44; /* Nieco ja�niejsza ziele� */
            --accent-gold: #c5a059;   /* Z�oto/Mosi�dz */
            --text-light: #f4f4f4;
            --text-dark: #333333;
            --bg-light: #f9f9f9;
        }

        /* --- RESET I BAZA --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        /* --- NAWIGACJA --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background 0.4s ease, padding 0.4s ease;
            color: var(--text-light);
        }

               /* --- POPRAWKA MENU (Po przewini�ciu) --- */
        nav.scrolled {
            background-color: var(--primary-green) !important; /* Wymuszamy ciemn� ziele� */
            padding: 15px 5%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        /* Kolor link�w w menu po przewini�ciu - MUSZ� BY� JASNE */
        nav.scrolled .nav-links li a {
            color: #fff !important; /* Bia�y tekst */
        }

        /* Kolor logo po przewini�ciu */
        nav.scrolled .logo {
            color: var(--accent-gold) !important; /* Z�ote logo */
        }

        /* Pasek pod linkiem (hover) po przewini�ciu */
        nav.scrolled .nav-links li a::after {
            background-color: var(--accent-gold);
        }

        /* Przycisk hamburgera na mobilu po przewini�ciu */
        nav.scrolled .mobile-toggle {
            color: #fff !important;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            color: var(--accent-gold);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links li a {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-gold);
            transition: width 0.3s;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        header {
            height: 100vh;
            background: linear-gradient(rgba(26, 60, 52, 0.7), rgba(26, 60, 52, 0.4)), 
                        url('https://images.unsplash.com/photo-1554995207-c18c203602cb?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            padding: 0 20px;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeIn 1.5s ease-out;
        }

        .sub-headline {
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: block;
        }

        header h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            margin-top: 20px;
        }

        .btn:hover {
            background-color: var(--accent-gold);
            color: var(--primary-green);
        }

        /* --- O NAS (Styl z tekstem i obrazkiem obok) --- */
        .section-padding {
            padding: 80px 5%;
        }

        .about-section {
            background-color: var(--primary-green);
            color: var(--text-light);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            opacity: 0.8;
            font-weight: 300;
        }

        .stats-grid {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(197, 160, 89, 0.3);
            padding-top: 30px;
        }

        .stat-item h3 {
            font-size: 2rem;
            color: var(--accent-gold);
        }

        .stat-item span {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-image {
            position: relative;
        }
        
        .about-image img {
            border-radius: 4px;
            box-shadow: -20px 20px 0px var(--accent-gold);
        }

        /* --- OFERTA (Ikony) --- */
        .services {
            text-align: center;
            background: #fff;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
        }
        
        .section-header .divider {
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
            margin: 15px auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .service-card {
            padding: 40px 20px;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .service-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        .service-card i {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
            color: var(--primary-green);
        }

        /* --- GALERIA (Grid) --- */
        .gallery {
            background-color: #f4f4f4;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 350px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(26,60,52,0.9), transparent);
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: 0.4s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- KONTAKT --- */
        .contact-section {
            background-color: var(--primary-green);
            color: var(--text-light);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .contact-info {
            padding: 80px 10%;
            background: var(--secondary-green);
        }

        .contact-form-wrapper {
            padding: 80px 10%;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .info-item i {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-right: 20px;
            width: 30px;
        }

        form input, form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }

        form input:focus, form textarea:focus {
            outline: none;
            border-bottom-color: var(--accent-gold);
        }

        /* --- FOOTER --- */
        footer {
            background-color: #111;
            color: #888;
            padding: 50px 5%;
            text-align: center;
            font-size: 0.9rem;
        }

        footer strong {
            color: var(--text-light);
            font-family: 'Playfair Display', serif;
        }

        /* --- EFEKTY JS (Fade In) --- */
        .reveal {
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            transition: 1s all ease;
        }
        .reveal.active {
            transform: translateY(0);
            opacity: 1;
        }

        /* --- MEDIA QUERIES (RWD) --- */
        @media (max-width: 768px) {
            header h1 { font-size: 2.5rem; }
            
            .nav-links {
                position: absolute;
                right: 0px;
                height: 100vh;
                top: 0;
                background-color: var(--primary-green);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 60%;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
            }

            .nav-links.nav-active {
                transform: translateX(0%);
            }

            .mobile-toggle {
                display: block;
                z-index: 1001;
            }

            .about-section, .contact-section {
                grid-template-columns: 1fr;
            }

            .about-image { order: -1; margin-bottom: 30px; }
            .about-image img { box-shadow: none; }
        }

        /* Animacja wej�cia */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* --- STYL STRONY POJEDYNCZEJ OFERTY (property.php) --- */

.property-header {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end; /* Tekst na dole */
    padding-bottom: 50px;
}
.property-header::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to bottom, rgba(26,60,52,0.3), rgba(26,60,52,0.9));
}
.property-header-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Uk�ad Grid: Tre�� + Sidebar */
.property-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Lewa 66%, Prawa 33% */
    gap: 50px;
}

/* LEWA KOLUMNA */
.property-desc h2 { color: var(--primary-green); margin-bottom: 20px; border-bottom: 1px solid #ddd; padding-bottom: 10px; }
.property-desc p { margin-bottom: 15px; color: #555; }
.property-desc ul { margin-left: 20px; margin-bottom: 20px; list-style: disc; }

/* Galeria zdj�� */
.property-gallery {
    margin-top: 30px;
}

.property-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.property-thumb {
    border: none;
    padding: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.25s ease;
}

.property-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-thumb:hover,
.property-thumb:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    outline: none;
}

.property-thumb:hover::after,
.property-thumb:focus-visible::after {
    border-color: rgba(197, 160, 89, 0.85);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 17, 15, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 4000;
    padding: 28px;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-figure {
    max-width: min(1100px, 86vw);
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-figure img {
    max-width: 100%;
    max-height: calc(86vh - 40px);
    border-radius: 10px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
    object-fit: contain;
}

#lightboxCounter {
    color: #f5f5f5;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.lightbox-close,
.lightbox-nav {
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1.04);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

body.lightbox-open {
    overflow: hidden;
}

/* PRAWA KOLUMNA (SIDEBAR) */
.sidebar-sticky {
    position: sticky;
    top: 100px; /* Zatrzymuje si� 100px od g�ry ekranu */
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    border-top: 4px solid var(--accent-gold);
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 5px;
}
.price-sub { font-size: 0.9rem; color: #888; margin-bottom: 20px; display: block; }

.specs-list { list-style: none; margin-bottom: 30px; }
.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}
.specs-list li strong { color: var(--primary-green); }

/* Statusy */
.badge {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}
.badge-sold { background: #ffebee; color: #c62828; }
.badge-reserved { background: #fff8e1; color: #f57f17; }

/* RWD */
@media (max-width: 900px) {
    .property-container { grid-template-columns: 1fr; } /* Mobilnie jedna kolumna */
    .sidebar-sticky { position: static; margin-bottom: 40px; order: -1; /* Sidebar na g�rze */ }

    .property-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .property-thumb img {
        height: 100%;
    }

    .lightbox {
        padding: 16px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 560px) {
    .property-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-figure {
        max-width: 96vw;
    }

    #lightboxCounter {
        font-size: 0.82rem;
    }
}
/* --- STYLISTYKA PODSTRONY OFERTY (listings.php) --- */

.page-header {
    height: 40vh; /* Wysoko�� nag��wka */
    /* T�o zdj�cia */
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important; /* Efekt paralaksy */
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* POPRAWKA: */
    margin-top: 0 !important; /* Usuwamy odst�p, zdj�cie wchodzi pod menu */
    padding-top: 80px; /* Dodajemy padding wewn�trz, �eby napis by� na �rodku optycznie */
}
.page-header .overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(26, 60, 52, 0.8); /* Ciemna ziele� */
}
.page-header .content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.page-header h1 { font-size: 3rem; margin-bottom: 10px; }

/* Filtry Kategorii */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.filter-btn:hover, 
.filter-btn.active {
    background-color: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
    box-shadow: 0 4px 10px rgba(26, 60, 52, 0.3);
}

/* Kafelki na li�cie (Modyfikacja istniej�cego gallery-item) */
.gallery-link {
    display: block;
    height: 100%;
    color: inherit;
}

.img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover .img-wrapper img {
    transform: scale(1.1);
}

/* Odznaki na zdj�ciu */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}
.card-badge.sold { background: #c0392b; color: #fff; }
.card-badge.reserved { background: #f39c12; color: #fff; }

.type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Tre�� pod zdj�ciem (zamiast naje�d�ania) */
.static-overlay {
    position: relative;
    background: #fff;
    padding: 20px;
    transform: none !important; /* Nadpisujemy hover z index.php */
    opacity: 1 !important;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}
.gallery-item:hover .static-overlay {
    border-bottom-color: var(--accent-gold);
}

.static-overlay h3 { font-size: 1.2rem; color: var(--primary-green); margin-bottom: 5px; }
.city { color: #888; font-size: 0.9rem; margin-bottom: 15px; }
.details-row { display: flex; gap: 15px; font-size: 0.85rem; color: #555; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.price { font-size: 1.3rem; color: var(--accent-gold); font-weight: bold; font-family: 'Playfair Display', serif; }
/* --- POPRAWKA WYSOKO�CI KAFELK�W NA PODSTRONIE OFERTY --- */

.listings-section .gallery-item {
    height: auto !important; /* WA�NE: Odblokowuje sztywn� wysoko�� */
    min-height: 100%;        /* Rozci�ga kafelek na ca�� wysoko�� wiersza w siatce */
    display: flex;
    flex-direction: column;  /* Uk�ada elementy pionowo */
    background-color: #fff;  /* Bia�e t�o */
    border: 1px solid #e5e5e5; /* Delikatna ramka */
    border-radius: 8px;      /* Zaokr�glone rogi */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* Lekki cie� */
    overflow: hidden;        /* �eby nic nie wystawa�o poza zaokr�glenia */
}

/* Link wewn�trz kafelka */
.listings-section .gallery-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Sekcja tekstowa pod zdj�ciem */
.listings-section .static-overlay {
    flex-grow: 1;            /* Wypycha tre��, �eby wyr�wna� kafelki */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Rozsuwa tytu� od ceny */
    position: relative;
    top: 0;                  /* Resetuje pozycjonowanie z hovera */
    transform: none;
    opacity: 1;
    background: #fff;
    padding: 20px;
    height: auto;            /* Tekst mo�e by� dowolnie d�ugi */
}

/* Poprawka dla zdj�cia w kafelku ofert */
.listings-section .img-wrapper {
    height: 250px;           /* Zdj�cie ma sta�� wysoko�� */
    flex-shrink: 0;          /* Zdj�cie si� nie kurczy */
}
/* --- PODSTRONA KONTAKT (contact.php) --- */

.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Lewa kolumna - Dane kontaktowe */
.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}
.contact-lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.info-icon {
    width: 50px;
    height: 50px;
    background-color: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-right: 20px;
    flex-shrink: 0;
}
.info-content h4 {
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-green);
}
.info-content p {
    color: #555;
    margin: 0;
}
.info-content a {
    color: #555;
    transition: 0.3s;
}
.info-content a:hover {
    color: var(--accent-gold);
}

/* Prawa kolumna - Formularz */
.contact-form-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
    border-top: 4px solid var(--accent-gold);
}
.contact-form-card h3{
    color: var(--accent-gold);
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: #fafafa;
}

/* Mapa */
.map-section {
    width: 100%;
    height: 400px;
    margin-top: 60px;
    filter: grayscale(100%); /* Szara mapa pasuje do stylu premium */
    transition: 0.5s;
}
.map-section:hover { filter: grayscale(0%); }

/* RWD */
@media (max-width: 768px) {
    .contact-section { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-card { padding: 25px; }
}
/* --- POPRAWKA CZYTELNO�CI KONTAKTU --- */

/* Wymuszamy ciemny kolor dla ca�ej sekcji tekstowej kontaktu */
.contact-info {
    color: white !important; /* Ciemny szary */
}

/* Konkretne elementy w sekcji kontaktowej */
.contact-info p, 
.contact-info a,
.contact-info .contact-lead {
    color: white !important; /* Nieco ja�niejszy szary, ale czytelny */
}

/* Nag��wki w kontakcie */
.contact-info h2,
.contact-info h3,
.contact-info h4 {
    color: var(--gold-green) !important; /* Ciemna ziele� dla nag��wk�w */
}

/* Linki w kontakcie (telefon, mail) */
.contact-info a {
    font-weight: 600;
}
.contact-info a:hover {
    color: var(--accent-gold) !important;
}

/* Ikony w k�eczkach */
.info-icon {
    background-color: #eee !important; /* Jasnoszare t�o ikony */
    color: var(--primary-green) !important; /* Ciemnozielona ikona */
}
/* --- POPRAWKA FORMULARZA W SIDEBARZE (property.php) --- */

/* Konkretnie celujemy w pola wewn�trz sidebara */
.sidebar-sticky input, 
.sidebar-sticky textarea {
    color: #333 !important;       /* Ciemny grafit - tekst musi by� widoczny */
    background-color: #fff !important; /* Bia�e t�o */
    border: 1px solid #ccc !important; /* Szara ramka */
    font-family: 'Montserrat', sans-serif;
}

/* Kolor placeholder�w (tego szarego tekstu "Twoje imi�...") */
.sidebar-sticky ::placeholder { 
    color: #999 !important; 
    opacity: 1;
}

/* Po klikni�ciu w pole */
.sidebar-sticky input:focus, 
.sidebar-sticky textarea:focus {
    border-color: var(--accent-gold) !important;
    outline: none;
    background-color: #fafafa !important;
}
/* --- PODSTRONA O NAS (about.php) --- */

/* Sekcja Historii */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}
.story-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}
.story-img {
    position: relative;
}
.story-img img {
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--accent-gold); /* Z�oty cie� */
}

/* Pasek Statystyk */
.stats-bar {
    background-color: var(--primary-green);
    color: #fff;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-bottom: 80px;
}
.stat-box h3 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}
.stat-box span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Sekcja Zespo�u */
.team-section {
    text-align: center;
    margin-bottom: 80px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.team-card {
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}
.team-img-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}
.team-info {
    padding: 25px;
}
.team-info h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.team-info p {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}
.team-socials a {
    color: #ccc;
    margin: 0 8px;
    transition: 0.3s;
}
.team-socials a:hover {
    color: var(--primary-green);
}

/* RWD */
@media (max-width: 900px) {
    .story-section { grid-template-columns: 1fr; }
    .story-img { order: -1; margin-bottom: 30px; }
}