:root {
    --main-blue: #004AAD;
    --light-blue: #00AEEF;
    --dark-grey: #333333;
    --light-grey: #F4F4F4;
    --white: #FFFFFF;
    --gold: #FFCC00;
}

/* PODSTAWY */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; color: var(--dark-grey); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }

/* TOP BAR */
.top-bar { background: var(--main-blue); color: var(--white); padding: 10px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.phone-link { color: var(--gold); text-decoration: none; font-weight: bold; }

/* HEADER & LOGO */
.main-header { background: var(--white); border-bottom: 1px solid #eee; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.logo-link { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: bold; color: var(--main-blue); text-decoration: none; }
.highlight { color: var(--light-blue); }

/* MENU */
.main-nav ul { list-style: none; display: flex; gap: 25px; align-items: center; }
.main-nav a { text-decoration: none; color: var(--dark-grey); font-weight: 500; transition: 0.3s; }
.main-nav a:hover, .main-nav a.active { color: var(--light-blue); }
.btn-small { background: var(--main-blue); color: white !important; padding: 10px 20px; border-radius: 6px; }

/* PRZYCISK MENU (Domyślnie ukryty) */
.menu-toggle { display: none; background: none; border: none; font-size: 2rem; color: var(--main-blue); cursor: pointer; }

/* HERO */
.hero { background: linear-gradient(rgba(0, 74, 173, 0.95), rgba(0, 45, 106, 0.95)); color: var(--white); padding: 120px 0; text-align: center; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3.2rem; margin-bottom: 25px; }
.blue-text { color: var(--light-blue); }
.hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 40px; opacity: 0.95; font-weight: 300; }

.btn-main { background: var(--gold); color: var(--main-blue); padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; font-size: 1.1rem; }
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 16px 40px; border-radius: 50px; text-decoration: none; display: inline-block; margin-left: 15px; transition: 0.3s; }
.btn-outline:hover { background: var(--white); color: var(--main-blue); }

/* LOCATIONS */
.locations { padding: 40px 0; background: var(--light-grey); }
.small-title { font-weight: bold; color: #777; margin-bottom: 15px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chips span { background: var(--white); border: 1px solid #ddd; padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; color: #555; }

/* USŁUGI */
.section-title { font-family: 'Montserrat', sans-serif; font-size: 2.4rem; margin-bottom: 50px; text-align: center; color: var(--main-blue); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.service-card { background: var(--white); padding: 50px 30px; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); text-align: center; border-bottom: 6px solid var(--light-blue); transition: 0.3s; }
.service-card:hover { transform: translateY(-12px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.service-card .icon { font-size: 4rem; margin-bottom: 25px; }

footer { background: #1a1a1a; color: #888; padding: 40px 0; font-size: 0.95rem; text-align: center; }

/* --- POPRAWKI DLA TELEFONU (MOBILE) --- */
@media (max-width: 768px) {
    /* 1. Naprawa Top Baru */
    .top-bar .flex-between { flex-direction: column; gap: 10px; text-align: center; }
    .top-bar span { font-size: 0.8rem; opacity: 0.9; }

    /* 2. Naprawa Header i Logo */
    .logo-link { font-size: 1.2rem; } /* Mniejsze logo */
    .menu-toggle { display: block; } /* Pokaż przycisk menu */

    /* 3. Ukrycie menu pod hamburgera */
    .main-nav { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: white; 
        box-shadow: 0 10px 15px rgba(0,0,0,0.1); 
        padding: 20px 0; 
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 15px; }
    .main-nav a { display: block; padding: 10px; width: 100%; text-align: center; border-bottom: 1px solid #f4f4f4; }

    /* 4. Naprawa Hero */
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 1.8rem; padding: 0 10px; }
    .hero p { font-size: 1rem; padding: 0 15px; }
    .hero-actions { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .btn-outline { margin-left: 0; width: 85%; }
    .btn-main { width: 85%; }
}