:root {
    --bg: #081c2c;
    --bg-secondary: #0e2334;
    --card: #112d42;
    --card-hover: #173950;
    --border: #23435a;
    --primary: #0b62b4;
    --primary-hover: #1678d8;
    --text: #ffffff;
    --text-muted: #9db0c0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* NAVBAR */

.navbar {
    background-color: rgba(8, 28, 44, 0.98) !important;
    backdrop-filter: blur(12px);
	background: #081c2c !important;
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 2000;
}

.navbar .container {
display: flex;
align-items: center;
}

.navbar-collapse {
justify-content: flex-end;
}

.navbar-nav {
    margin-left: auto;
    gap: 40px;
}

.navbar-nav .nav-link {
    padding: 0 18px;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-link {
    color: #8fb6d1 !important;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: .3s;
}

.nav-link:hover {
    color: #ffffff !important;
}

.logo {
    height: 70px;
    width: auto;
}

/* HERO */

.hero {
	min-height: 35vh;
	display: flex;
	align-items: center;
	padding: 30px 0;
	background: var(--bg);
    color: white;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    max-width: 650px;
    color: var(--text-muted);
}

.hero-tag {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #7da7c6;
    text-shadow: 0 0 12px rgba(125, 167, 198, 0.15);
}

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

/* SEKCJE */

section {
    padding: 50px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* =========================
   FACTORY BANNER
   ========================= */

.factory-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.factory-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
}

/* KARTY */

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px;
    height: 100%;
    transition: .3s;
}

.service-card:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
}

.service-card h4 {
    margin-bottom: 15px;
    color: white;
}

.service-card p {
    color: var(--text-muted);
}

/* SERWIS */

.bg-light {
    background: var(--bg-secondary) !important;
    color: white;
}

/* FORMULARZ */

.form-control {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    color: white;
    padding: 14px;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    background: rgba(255,255,255,.08);
    border-color: var(--primary);
    color: white;
    box-shadow: none;
}


/* =========================
   PROCESS SECTION
   ========================= */

.process-header {
    background: #0c4676;
    padding: 70px 0;
}

.process-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 15px;
}

.process-icon {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 10px auto;
    transition: transform .3s ease;
}

.service-card:hover .process-icon {
    transform: scale(1.05);
}

.section-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #9ec3df;
}

.header-mail {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
}

.support-row {
    padding: 50px 0;
}

.support-card {
    border-radius: 12px;
    padding: 40px;
    height: 100%;
}

.support-card.light {
    background: #eef0f3;
    color: #142c3c;
}

.support-card.light h3 {
    margin-top: 20px;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.support-card.light .section-tag {
    color: #114f80;
}

.support-card.dark {
    background: #17384e;
    color: white;

    display: flex;
    flex-direction: column;
    gap: 28px;
}

.support-item {
    font-size: 1.25rem;
    font-weight: 600;
}

.support-item span {
    display: inline-block;
    width: 40px;
    color: #ffffff;
    font-weight: 700;
}
/* =========================
   CONTACT PAGE
   ========================= */

.contact-page {
    min-height: 100vh;
    padding: 100px 0;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px;
}

.contact-card h1 {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* FOOTER */

footer {
    background: #061622 !important;
    color: var(--text-muted);
}
.footer-section {
    background: #061622;
    color: #9db0c0;
    padding: 50px 0 25px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-section h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section a {
    color: #9ec3df;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section hr {
    border-color: rgba(255,255,255,.08);
    margin: 30px 0 20px;
}

/* MOBILE */

@media (max-width: 768px) {
	
	.factory-image{
		height:250px;
	}

    .hero {
        text-align: center;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .logo {
        height: 45px;
		width: auto;
    }

    .contact-page {
        padding: 40px 0;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-card h1 {
        font-size: 2rem;
        text-align: center;
    }

    .contact-card p {
        text-align: center;
    }

    .section-tag {
        text-align: center;
        display: block;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h5 {
        margin-top: 15px;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 15px;
    }

    .nav-link {
        padding: 12px 0;
    }

}
