﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
section {
    padding: 80px 0;
}
.bg-light {
    background-color: #f8fafc;
}
.text-center {
    text-align: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e3a8a;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.btn-outline {
    background: transparent;
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
}
.btn-outline:hover {
    background: #1e3a8a;
    color: white;
}
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}
h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}
h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.gradient-text {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
/* Hero */
.hero {
    position: relative;
    background: linear-gradient(107deg, #0a1128 0%, #102a4e 100%);
    color: white;
    padding: 120px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e7882a?w=1920&q=80');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.2;
    z-index: 0;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
}
.hero p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 1.5rem 0 2rem;
    opacity: 0.9;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}
/* Nawigacja */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 16px 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.logo a {
    text-decoration: none;
    display: inline-block;
}
.logo img {
    height: 50px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1e293b;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #1e3a8a;
}
.contact-header {
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 500;
}
.contact-header span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
/* Sekcja O firmie */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 48px 0 32px;
}
.about-text p {
    margin-bottom: 1rem;
}
.about-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 48px 0;
}
.stat-card {
    background: white;
    border-radius: 32px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 160px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.value-card {
    background: #f8fafc;
    padding: 28px;
    border-radius: 28px;
    text-align: center;
}
/* Oferta 3x3 */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.offer-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    border: 1px solid #eef2f5;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}
.offer-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 733 / 419;
    object-fit: cover;
    display: block;
}
.offer-card h3 {
    padding: 20px 20px 0;
    font-size: 1.35rem;
}
.offer-card p {
    padding: 8px 20px 20px;
    color: #475569;
}
/* Definicje - 8 pozycji (4x2) */
.definitions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.def-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.03);
    border: 1px solid #eef2f5;
    transition: all 0.2s;
}
.def-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -8px rgba(0,0,0,0.1);
}
.def-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1e3a8a;
    border-left: 4px solid #1e3a8a;
    padding-left: 16px;
}
/* FAQ */
.faq-grid {
    max-width: 900px;
    margin: 40px auto 0;
}
.faq-item {
    background: white;
    border-radius: 24px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}
.faq-question {
    font-weight: 700;
    font-size: 1.2rem;
    padding: 20px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    color: #0f172a;
    border: none;
    width: 100%;
    text-align: left;
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s;
}
.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
    border-top: none; 
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 16px 28px 20px;
    border-top: 1px solid #eef2f5
}
.faq-item.active .faq-question {
    border-radius: 24px 24px 0 0;
}
/* Galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
/* Kontakt */
.contact-world {
    background: linear-gradient(120deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 48px;
    padding: 48px;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.15);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.contact-details {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(2px);
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 12px 24px -10px rgba(0,0,0,0.08);
    border: 1px solid rgba(30,58,138,0.1);
}
.contact-details p {
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
}
.contact-details a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-details a:hover {
    color: #1e3a8a;
}
.google-maps {
    width: 100%;
    height: 380px;
    border-radius: 32px;
    border: 0;
    box-shadow: 0 20px 30px -12px rgba(255, 255, 255, 0.15);
}
.social-prominent {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
/* POPRAWIONY KONTRAST - PRZYCISK FACEBOOK */
.fb-btn {
    background-color: #3D3D3D;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
}
.fb-btn:hover {
    background-color: #fcfcfc;
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgb(255, 255, 255);
}
/* Flagi */
.flags-section {
    background: #f1f5f9;
    padding: 48px 0;
    text-align: center;
}
.lang-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.lang-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 5px 14px;
    border-radius: 40px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: 0.2s;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
}
.lang-item img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}
.lang-item:hover {
    background: #eef2ff;
    border-color: #ffffff;
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 44px;
    color: white;
    cursor: pointer;
}
/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-grid a {
    color: #cbd5e1;
    text-decoration: none;
}
.footer-legal {
    font-size: 0.8rem;
    border-top: 1px solid #334155;
    padding-top: 24px;
    margin-top: 24px;
    text-align: center;
}
.badge {
    display: inline-block;
    background: #1e293b;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    margin: 0 4px;
}
@media (max-width: 1024px) {
    .definitions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .navbar .container { flex-direction: column; }
    .nav-links { justify-content: center; gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .offer-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .definitions-grid { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    .hero { padding: 80px 0; }
    .contact-world { padding: 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
}