* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html{
scroll-behavior:smooth;
}

section{
scroll-margin-top:110px;
padding-top:20px;
}

body {
    background: #f4f6f8;
    color: #1e293b;
	padding-top: 95px;
}

/* HEADER */
header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    max-width: 1280px;
    margin: auto;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 36px;
}

.nav img {
    height: clamp(70px, 8vw, 130px);
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav a {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.nav a:hover {
    color: #f59e0b;
    transform: translateY(-2px);
}
.nav a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
    margin-top: 6px;
}

.nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background: url('img/hero.webp') center bottom / cover no-repeat;
	padding: 80px clamp(40px, 8vw, 160px);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hero h1 {
    font-size: clamp(38px, 3.5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
	text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.hero h1 span {
    color: #f59e0b;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 42px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ffb020);
    color: #000;
    box-shadow: 0 10px 30px rgba(245,158,11,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245,158,11,0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, #1e40af, #2748d8);
    color: #fff;
    box-shadow: 0 10px 30px rgba(30,64,175,0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30,64,175,0.45);
}

/* SERVICES */
.services {
    position: relative;
    padding: 160px 0 120px 0;
    background: url('img/hero-bottom.webp') center top / cover no-repeat;
}

.services-box {
    position: relative;
    top: -190px;
    max-width: 1100px;
    margin: auto;
    padding: 10px 10px; /* było 70px */
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.service {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
	padding: 10px 20px;
	justify-content: flex-start;
}

.service img {
    width:120px;
    height:auto;
}

.service h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service p {
    font-size: 15px;
    line-height: 1.6;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
}
.service:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.08);
}

.hero-bottom {
    position: relative;
    min-height: 50vh;
    padding: 100px 20px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-bottom h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.hero-bottom-content {
	position: relative;
	z-index: 2;
	color: #fff;
}

.why-us {
    padding: 120px 20px;
    text-align: center;
    background:
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    url('img/hero-bottom.webp') center/cover no-repeat;
}

.about {
    padding: 120px 20px;
    background:
    linear-gradient(rgba(248,250,252,0.95), rgba(248,250,252,0.95)),
    url('img/hero-bottom.webp') center/cover no-repeat;
}

.about h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.about ul {
    margin-top: 20px;
    padding-left: 20px;
}

.about li {
    margin-bottom: 8px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.why-us h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.why-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-grid div{
	background:#ffffff;
	padding:22px;
	border-radius:14px;
	box-shadow:0 10px 25px rgba(0,0,0,0.08);
	transition:all 0.25s ease;
}

.why-grid div:hover{
	transform:translateY(-4px);
	box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* ===== HAMBURGER PRO ===== */

.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.no-scroll {
    overflow: hidden;
}

.footer {
    background: #0f172a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
}

.footer a {
    color: #f59e0b;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.call-bar{
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	background:#f59e0b;
	color:#000;
	text-align:center;
	padding:14px;
	font-weight:700;
	font-size:18px;
	z-index:2000;
	display:none;
}

.call-bar a{
	color:#000;
	text-decoration:none;
}

.reviews {
    padding: 120px 20px;
    background: #f8fafc;
    text-align: center;
}

.reviews h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 10px;
	letter-spacing: 2px;
}

.review p {
    font-size: 15px;
    margin-bottom: 10px;
}

.review span {
    font-size: 13px;
    opacity: 0.7;
}

.faq{
    padding:120px 20px;
    background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    url('img/hero-bottom.webp') center/cover no-repeat;
}

.faq .container{
	max-width:900px;
}

.faq-item{
	background:#ffffff;
	padding:22px;
	border-radius:12px;
	box-shadow:0 10px 25px rgba(0,0,0,0.08);
	transition:all 0.25s ease;
	margin-bottom:18px;
}

.faq-item:hover{
transform:translateY(-3px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.faq h3{
	margin-bottom:8px;
	font-size:18px;
}

	@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.map {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 120px 20px;
    text-align: center;
}

.map iframe{
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.map p {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	body {
		padding-top: 80px;
	}
	.btn {
		text-align: center;
		padding:10px 16px;
		font-size:13px;
		border-radius:8px;
	}

    .hero-bottom {
        padding: 80px 20px;
        min-height: auto;
		font-size: 20px;
		padding: 20px 50px;
    }

    .hero-bottom h2 {
        font-size: 24px;
    }

    .hamburger {
        display: block;
    }

    .hero {
		min-height: auto;
		padding: 70px 20px 30px 20px;
    }

	.hero-buttons{
		display:flex;
		gap:8px;
		margin-top:15px;
		flex-wrap:wrap;
	}


    .hero-content {
		min-height:auto;
		justify-content:flex-start;
		padding-top:30px;
    }

    .hero h1 {
		font-size:22px;
		line-height:1.25;
    }
	
	.hero h1 span {
		display:block;
	}

    .hero p {
        font-size:13px;
		margin-bottom:20px;
    }

	.nav {
		padding: 16px 16px; /* było 24px */
	}

	.nav img {
		height: 85px; 
	}
	
	.nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: rgba(15,23,42,0.95);
		backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    }

    .nav ul.active {
        right: 0;
    }

    .nav a {
        font-size: 20px;
        color: #fff;
    }

	.logo img {
		height: 55px;
	}
	
	.services {
		padding:40px 0 60px 0;
	}
	
	.service {
		display:flex;
		flex-direction:column;
		align-items:center;
		gap:4px;
		background: none;
		border-radius:16px;
		padding:14px 16px;
		box-shadow: none;
		text-align:center;
	}
	
	.service:hover {
		transform: translateY(-6px);
		box-shadow:0 20px 40px rgba(0,0,0,0.15);
	}
	
	.service:hover img {
    transform: scale(1.08);
	}
	
	.services-box {
		position:static;
		display:flex;
		flex-direction:column;
		gap:8px;
		margin:50px auto;
		padding:0 15px;
		background:none;
		box-shadow:none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
	
	.service img {
		width:130px;
		height:auto;
		margin-bottom:2px;
	}

	.service h3 {
		font-size:18px;
		margin-bottom:2px;
		color: #f59e0b;
		font-weight: 700;
		text-shadow: 0 2px 6px rgba(0,0,0,0.6);
	}
		
	.service p {
		color: #fde68a;
		text-shadow: 0 1px 4px rgba(0,0,0,0.5);
	}
	
	.services::before {
    background: rgba(0,0,0,0.25); /* 🔥 lekki dark overlay */
    }
  
	.why-grid {
	grid-template-columns: 1fr;
    }
	
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
	.call-bar{
		display:block;
	}
	.reviews-grid {
    grid-template-columns: 1fr;
	}
	
	.review {
    text-align: left;
    padding: 18px;
    border-radius: 0;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	background: none;
    box-shadow: none;
	}

	.stars {
		font-size: 16px;
		margin-bottom: 6px;
	}

	.review p {
		font-size: 14px;
		line-height: 1.5;
	}

	.review span {
		font-size: 12px;
		display: block;
		margin-top: 8px;
	}
	.review:last-child {
    border-bottom: none;
	}
}