/* Strony lokalizacyjne - Chiptuning Częstochowa/Katowice/Kraków + Kodowanie skrzyń */
/* Ten sam styl 1:1 na wszystkich stronach typu chiptuning-*, kodowanie-skrzyni-* */

/* Hero - sekcja główna */
.hero.czestochowa-hero,
.hero.katowice-hero,
.hero.krakow-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.feature {
    background: #fff;
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(238, 118, 66, 0.15);
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button.primary {
    background: #EE7642 !important;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.cta-button.primary:hover {
    background: #d65a2e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 118, 66, 0.35);
}

.cta-button.secondary {
    background: #2a2a2a !important;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px);
}

/* Locations - obszar działania */
.locations-katowice {
    padding: 80px 0;
    background: #f8f9fa;
}

.locations-katowice .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.locations-katowice .section-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.locations-katowice .section-header p {
    font-size: 1.1rem;
    color: #666;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.location-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.location-card.main {
    border-top: 4px solid #EE7642;
}

.location-card h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 12px;
    font-weight: 600;
}

.location-card p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.location-card ul {
    list-style: none;
    padding: 0;
}

.location-card li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

.location-card li:before {
    content: "✓";
    color: #EE7642;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Why Us - zalety */
.why-us {
    padding: 80px 0;
    background: #fff;
}

.why-us .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-us .section-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-us .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.advantage {
    background: #f8f9fa;
    padding: 24px 28px;
    border-radius: 12px;
    border-left: 4px solid #EE7642;
    transition: transform 0.3s ease;
}

.advantage:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.advantage h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.advantage p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA - call to action */
.cta.czestochowa-cta,
.cta.katowice-cta,
.cta.krakow-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #EE7642 0%, #d65a2e 100%);
    color: #fff;
    text-align: center;
}

.cta.czestochowa-cta .cta-content h2,
.cta.katowice-cta .cta-content h2,
.cta.krakow-cta .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
}

.cta.czestochowa-cta .cta-content p,
.cta.katowice-cta .cta-content p,
.cta.krakow-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta.czestochowa-cta .cta-button.primary,
.cta.katowice-cta .cta-button.primary,
.cta.krakow-cta .cta-button.primary {
    background: #fff !important;
    color: #EE7642 !important;
}

.cta.czestochowa-cta .cta-button.primary:hover,
.cta.katowice-cta .cta-button.primary:hover,
.cta.krakow-cta .cta-button.primary:hover {
    background: #f8f9fa !important;
    color: #d65a2e !important;
}

.cta.czestochowa-cta .cta-button.secondary,
.cta.katowice-cta .cta-button.secondary,
.cta.krakow-cta .cta-button.secondary {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    border: 2px solid #fff;
}

.cta.czestochowa-cta .cta-button.secondary:hover,
.cta.katowice-cta .cta-button.secondary:hover,
.cta.krakow-cta .cta-button.secondary:hover {
    background: rgba(255,255,255,0.3) !important;
}

.cta-address {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
