/* =============================================
   PROFESJONALNY DESIGN – KOLOR GŁÓWNY #1c2f5a
   ============================================= */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #1e2a3e;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* ---------- NAVIGATION ---------- */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e9edf2;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1c2f5a;
    letter-spacing: -0.5px;
}

.lang-switch {
    display: flex;
    gap: 0.4rem;
    background: #f4f6fa;
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.25rem 0.6rem;
    border-radius: 30px;
}

.lang-btn.active {
    background-color: #1c2f5a;
    color: white;
}

.lang-btn:hover:not(.active) {
    background-color: #e2e8f0;
}

/* ---------- HERO ---------- */
.hero-section {
    background: linear-gradient(120deg, #f4f7fc 0%, #ffffff 100%);
    padding: 3rem 2rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #0f1e2f;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #4a5a6f;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background-color: #1c2f5a;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: #142648;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ---------- SERVICES ---------- */
.services-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #0f1e2f;
    border-left: 5px solid #1c2f5a;
    padding-left: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #edf2f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.service-card:hover {
    border-color: #d0d8e4;
}

.service-icon i {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1c2f5a;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: #4a5a6f;
    font-size: 0.9rem;
    line-height: 1.45;
}

/* ---------- FOOTER (WSZYSTKIE DANE FIRMY) ---------- */
footer {
    background: #1c2f5a;
    color: #cdd9ed;
    padding: 2rem 2rem 1rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d4268;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.85;
    margin: 0.5rem 0;
}

.footer-col i {
    width: 1.5rem;
    color: #ffffff;
    opacity: 0.7;
}

.phone-note {
    font-size: 0.7rem;
    opacity: 0.7;
    display: inline-block;
    margin-left: 0.3rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    padding-top: 1.5rem;
    opacity: 0.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-col i {
        width: auto;
        margin-right: 0.5rem;
    }
}