:root {
    --color-primary: #111827;
    --color-secondary: #4b5563;
    --color-light: #f9fafb;
    --color-white: #ffffff;
    --container-width: 1200px;
}

.container {
    width: min(100% - 32px, var(--container-width));
    margin-inline: auto;
}

.site-header {
    background: var(--color-white);
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-secondary);
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.site-main {
    min-height: calc(100vh - 162px);
}

.hero-section {
    padding: 96px 0;
    background: var(--color-light);
    text-align: center;
}

.hero-section h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.hero-section p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--color-secondary);
}

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-inner {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-section {
        padding: 64px 0;
        text-align: left;
    }
}


body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-weight: 600;
}

p {
    font-weight: 400;
}



.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    max-height: 64px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #b6904b;
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header-contact-item:hover {
    color: #b6904b;
}

.header-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #b6904b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
}

@media (max-width: 991px) {
    .header-inner {
        min-height: auto;
        padding-top: 18px;
        padding-bottom: 18px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .header-contact {
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .site-logo img {
        max-height: 54px;
    }

    .main-nav ul {
        gap: 12px 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .header-contact {
        width: 100%;
        align-items: center;
    }

    .header-contact-item {
        font-size: 13px;
    }
}


.header-icon {
    background: #003b7a;
}

.main-nav a {
    color: #003b7a;
}

.main-nav a:hover,
.header-contact-item:hover {
    color: #0057b8;
}

.header-contact-item {
    color: #003b7a;
}

.site-header {
    border-bottom: 1px solid rgba(0, 59, 122, 0.14);
}



.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 92px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 55, 0.18);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-title-img {
    display: block;
    max-width: 420px;
    width: 90%;
    height: auto;
}

.hero-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 58%;
    min-height: 62px;
    padding: 0 40px;
    background: rgba(26, 26, 26, 0.78);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 620px;
    }

    .hero-title-img {
        max-width: 340px;
    }

    .hero-bottom {
        width: 78%;
        font-size: 21px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 520px;
    }

    .hero-title-img {
        max-width: 260px;
    }

    .hero-bottom {
        width: 100%;
        min-height: 54px;
        padding: 0 20px;
        font-size: 18px;
        clip-path: none;
    }
}



.services-section {
    padding: 80px 0 60px;
    background: #ffff;
}

.services-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* BOX LEWO/PRAWO */
.service-box {
    width: 32%;
    text-align: center;
    text-decoration: none;
    color: #003b7a;
    position: relative;
    transition: transform 0.25s ease;
}

.service-box img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

/* LINIE NAD I POD */
.service-box::before,
.service-box::after {
    content: "";
    display: block;
    width: 70%;
    height: 2px;
    background: #003b7a;
    margin: 0 auto 20px;
}

.service-box::after {
    margin-top: 20px;
}

/* HOVER */
.service-box:hover {
    transform: translateY(-6px);
}

.service-box:hover h3 {
    color: #0057b8;
}

/* ŚRODEK */
.service-center {
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-center img {
    max-width: 220px;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .services-inner {
        flex-direction: column;
        gap: 50px;
    }

    .service-box,
    .service-center {
        width: 100%;
    }

    .service-box img {
        max-width: 280px;
    }
}




