/* --- PLIK: style.css --- */
/* Główne ustawienia */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f0f0f; 
    color: #e0e0e0; 
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* MENU NAWIGACYJNE */
nav {
    background: #18181b; 
    padding: 15px 10px; 
    text-align: center; 
    border-bottom: 1px solid #27272a; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 15px;
}

nav a {
    color: #fff; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    transition: color 0.3s;
}

nav a:hover { color: #c29f6d; }
nav a.active { color: #c29f6d; }

.nav-contact {
    color: #c29f6d !important;
    border: 1px solid #c29f6d;
    padding: 4px 10px;
    border-radius: 4px;
}

/* HEADER (NAGŁÓWEK) */
header { 
    padding: 80px 20px 20px 20px; 
    text-align: center; 
    background: radial-gradient(circle at center, #1f2937 0%, #0f0f0f 100%); 
    border-bottom: 1px solid #222; /* Delikatna linia dla podstron */
}

h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 15px; color: #fff; }
h2 { font-size: 1.2rem; color: #9ca3af; font-weight: 400; max-width: 700px; margin: 0 auto; margin-bottom: 20px;}

.remote-note {
    font-size: 0.85rem; 
    color: #aaa; 
    margin-bottom: 10px;
    font-weight: 500;
}

/* PRZYCISKI */
.btn-gold { 
    display: inline-block; 
    padding: 14px 35px; 
    background-color: #c29f6d; 
    color: #000; 
    text-decoration: none; 
    border-radius: 4px; 
    font-weight: 700; 
    transition: 0.3s; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    margin-top: 20px;
}
.btn-gold:hover { background-color: #d4af7a; transform: translateY(-2px); }

/* GŁÓWNY KONTENER */
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 60px 20px; 
    flex-grow: 1; 
}

/* SIATKA KAFELKÓW (Grid) */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
}

.card { 
    background-color: #18181b; 
    padding: 40px 30px; 
    border-radius: 12px; 
    border: 1px solid #27272a; 
    transition: all 0.3s ease; 
    text-align: left; 
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px; 
}

.card:hover { 
    border-color: #c29f6d; 
    transform: translateY(-5px); 
    background-color: #1c1c20;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.card h3 { 
    color: #fff; 
    font-size: 1.4rem; 
    margin-bottom: 15px; 
    font-weight: 700;
}

.card p { 
    font-size: 0.95rem; 
    color: #aaa; 
    margin-bottom: 25px; 
    flex-grow: 1; 
}

.card-link {
    color: #c29f6d;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}
.card-link:hover { text-decoration: underline; }

/* SEKCJA DLACZEGO WARTO / KORZYŚCI */
.why-us, .service-section {
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 30px; /* Lekki padding */
}

.why-us {
    background-color: #131315; 
    border-radius: 12px;
    border: 1px solid #27272a;
    padding: 50px;
}

.section-title, .why-us h3 {
    color: #c29f6d; /* Złoty tytuł */
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Wariant z kreską z boku (używany w podstronach) */
.section-title {
    color: #c29f6d;
    border-left: 4px solid #c29f6d;
    padding-left: 15px;
}

.why-us h3 { text-align: center; color: #fff; border: none; }

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.check-icon {
    color: #c29f6d;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 25px;
}

.benefit-text strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-text p, p {
    color: #bbb;
    font-size: 0.95rem;
    margin: 0 0 15px 0;
}

/* LISTY PUNKTOWANE (W podstronach) */
ul { list-style: none; margin-bottom: 20px; }
li { margin-bottom: 12px; padding-left: 25px; position: relative; color: #d0d0d0; }
li::before {
    content: "✓";
    color: #c29f6d;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* PROCES KROK PO KROKU */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.step-card {
    background: #18181b;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #27272a;
    text-align: center;
}
.step-num {
    font-size: 2rem;
    color: #c29f6d;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.step-title {
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* FAQ */
.faq-section { margin-top: 60px; }
details {
    background-color: #18181b;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #27272a;
    overflow: hidden;
}
summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::after {
    content: "+";
    color: #c29f6d;
    font-size: 1.5rem;
    font-weight: bold;
}
details[open] summary::after { content: "-"; }
.faq-content { padding: 0 20px 20px 20px; color: #aaa; font-size: 0.95rem; }

/* CTA BOX (Wezwanie do działania) */
.cta-box {
    background: linear-gradient(135deg, #18181b 0%, #222 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid #333;
}

/* KONTAKT (Specyficzne dla kontakt.html) */
.contact-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    grid-template-columns: 1fr; 
}
@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.contact-card {
    background-color: #18181b;
    padding: 30px 15px; 
    border-radius: 12px;
    border: 1px solid #27272a;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; 
}
.contact-card:hover {
    border-color: #c29f6d;
    transform: translateY(-5px);
    background-color: #1f1f23;
}
.icon-large { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.contact-label {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    word-break: break-word; 
}
.gold-link {
    color: #000;
    background-color: #c29f6d;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.gold-link:hover { background-color: #d4af7a; transform: translateY(-2px); }

/* MAPA */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    margin-top: 20px;
}
iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%); 
}

/* STOPKA (Footer) - WERSJA POPRAWIONA NA 4 KOLUMNY */
footer {
    background-color: #0a0a0a; 
    border-top: 1px solid #1f1f1f;
    padding: 60px 20px 20px 20px;
    margin-top: auto;
    font-size: 0.9rem;
    color: #888;
}

.footer-container {
    max-width: 1200px; /* Zwiększona szerokość dla oddechu */
    margin: 0 auto;
    display: grid;
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
    
    /* DOMYŚLNIE (TELEFON): 1 kolumna */
    grid-template-columns: 1fr;
}

/* TABLET: 2 kolumny */
@media (min-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* KOMPUTER: Sztywne 4 kolumny w jednym rzędzie */
@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col p { margin-bottom: 10px; line-height: 1.6; color: #aaa; }
.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}
.footer-col a:hover { color: #c29f6d; }
.social-link { display: flex; align-items: center; gap: 10px; }
.footer-bottom {
    text-align: center;
    border-top: 1px solid #1f1f1f;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #555;
}

/* RESPONSYWNOŚĆ (Mobile) */
@media (max-width: 600px) {
    .why-us { padding: 30px 20px; }
    h1 { font-size: 2.2rem; }
    .container { padding: 40px 15px; }
    .map-container { height: 300px; }
}

/* --- BLOG I ARTYKUŁY --- */

/* Węższy kontener dla artykułów - lepiej się czyta */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    flex-grow: 1;
}

/* Styl tekstu w artykule */
.article-content {
    font-size: 1.1rem; /* Nieco większa czcionka */
    line-height: 1.8;  /* Większe odstępy między liniami */
    color: #d4d4d4;
    text-align: left;
}

.article-content h2 {
    color: #c29f6d;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #c29f6d;
    padding-left: 15px;
}

.article-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 30px;
}

.article-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.article-content li::before {
    content: "•";
    color: #c29f6d;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Link powrotu i data */
.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}
.back-link:hover { color: #c29f6d; }

.article-meta {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #27272a;
    padding-bottom: 20px;
}

/* Kafelki na stronie głównej bloga */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #c29f6d;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: none;
}

.blog-excerpt {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: #c29f6d;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}