:root {
    --bg-main: #184877;       /* główne tło – błękit/niebieski */
    --bg-alt: #12365c;        /* ciemniejsza wersja dla sekcji */
    --bg-hero1: #1f578d;
    --bg-hero2: #163b63;
    --gold: #d4af37;          /* złote tytuły */
    --gold-soft: #c39a2e;
    --text-main: #ffffff;     /* białe litery opisów */
    --text-muted: #e1e6f2;
}

/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

/* wszystko tekstowe domyślnie na biało */
p, li, a, span, label {
    color: var(--text-main);
}

/* linki w tekście lekko złotawe */
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* layout */
.container {
    width: min(1200px, 100% - 2rem);
    margin: 0 auto;
}

/* topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(10, 46, 87, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    gap: 1.5rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 120px;
}

/* nav */
.main-nav {
    display: flex;
    gap: 1.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav a {
    color: var(--text-muted);
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
    color: var(--text-main);
    border-color: var(--gold);
}

/* hero */
.hero {
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.20), transparent 55%),
                radial-gradient(circle at bottom right, rgba(13, 70, 130, 0.50), transparent 60%),
                linear-gradient(135deg, var(--bg-hero1), var(--bg-hero2));
    padding: 3.5rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-left h1 {
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    margin-bottom: 0.8rem;
    color: var(--gold);   /* złoty tytuł */
}

.hero-lead {
    color: var(--text-muted);
    max-width: 34rem;
}

.hero-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* przyciski */
.btn {
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #0a0a0a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.btn-outline {
    border-color: rgba(212, 175, 55, 0.7);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* hero – zalety */
.hero-benefits {
    margin-top: 2rem;
}

.hero-benefits h2 {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);  /* złoty tytuł */
    margin-bottom: 0.5rem;
}

.hero-benefits ul {
    list-style: none;
    display: grid;
    gap: 0.25rem;
}

.hero-benefits li span {
    color: var(--gold);
    margin-right: 0.4rem;
}

/* hero prawa kolumna */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(15, 56, 99, 0.95);
    border-radius: 1rem;
    padding: 1rem 1rem 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    max-width: 380px;
    width: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
}

/* sekcje */
.section {
    padding: 3rem 0;
    background: var(--bg-main);
}

.section-alt {
    background: var(--bg-alt);
}

/* złote tytuły sekcji */
.section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* layout 2 kolumny */
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: flex-start;
}

.section p + p {
    margin-top: 0.5rem;
}

/* karty i boksy */
.info-card, .card {
    background: rgba(10, 53, 97, 0.9);
    border-radius: 0.9rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 0.95rem;
}

/* karty usług */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.card h3 {
    margin-bottom: 0.4rem;
    color: var(--gold); /* złote tytuły kart */
}

/* listy */
.section ul {
    margin: 0.5rem 0 0.8rem;
    padding-left: 1.1rem;
}

.section li {
    margin-bottom: 0.25rem;
}

/* kontakt */
.contact-data p {
    margin-bottom: 0.2rem;
}

.contact-form {
    margin-top: 1rem;
    display: grid;
    gap: 0.6rem;
    max-width: 420px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background-color: rgba(10, 47, 87, 0.9);
    padding: 0.55rem 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(230, 236, 250, 0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* honeypot */
.hp-field {
    display: none;
}

/* checkbox RODO */
.rodo-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.rodo-check input {
    margin-top: 0.2rem;
}

.form-success {
    color: #b4f2b4;
    font-size: 0.9rem;
}

.form-error {
    color: #ffd1d1;
    font-size: 0.9rem;
}

/* mapa */
.info-card iframe {
    width: 100%;
    min-height: 260px;
    border: none;
    border-radius: 0.6rem;
    margin-top: 0.5rem;
}

/* stopka */
.footer {
    background: #0f2138;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.2rem 0 1.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-meta a {
    color: var(--gold);
}

/* banner cookie */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.8rem 1rem;
    background: rgba(9, 33, 61, 0.98);
    color: var(--text-main);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    z-index: 40;
}

/* responsive */
@media (max-width: 960px) {
    .hero-inner,
    .two-col {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-right {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }
}

@media (max-width: 720px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        font-size: 0.8rem;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
.online-info {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #e0c46a;
    font-weight: 600;
    animation: fadeIn 1.3s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero-extra {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Widoczne tylko na telefonach */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline-block;
    }
}

/* Podkreślenie online */
.service-note {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #FFD36A;
}

/* Efekt wyróżnienia */
.btn.highlight {
    border-color: #FFD36A;
    color: #FFD36A;
    transition: 0.3s;
}

.btn.highlight:hover {
    background-color: #FFD36A;
    color: #0B2C52;
}
.hero-extra {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
    }
}

/* Podkreślenie online */
.service-note {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #FFD36A;
}

/* Efekt wyróżnienia */
.btn.highlight {
    border-color: #FFD36A;
    color: #FFD36A;
    transition: 0.3s;
}

.btn.highlight:hover {
    background-color: #FFD36A;
    color: #0B2C52;
}
