/* lato-regular - latin_latin-ext */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	src: url("fonts/lato-v25-latin_latin-ext-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-italic - latin_latin-ext */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: "Lato";
	font-style: italic;
	font-weight: 400;
	src: url("fonts/lato-v25-latin_latin-ext-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin_latin-ext */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: "Lato";
	font-style: normal;
	font-weight: 700;
	src: url("fonts/lato-v25-latin_latin-ext-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700italic - latin_latin-ext */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: "Lato";
	font-style: italic;
	font-weight: 700;
	src: url("fonts/lato-v25-latin_latin-ext-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
	--font-base: "Lato", sans-serif;
	--color-gold: #d7b56d;
	--color-white: #fefefe;
	--color-light: #e0e0e0;
	--color-black: #0f0f0f;
	--color-dark: #131313;
	--max-width: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-base);
	color: var(--color-white);
	background: url(bg.jpg) no-repeat center / cover;
}

nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 2rem;
	background: var(--color-black);
	z-index: 2;
}

nav ul {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

nav ul a {
	color: var(--color-white);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	position: relative;
}

nav ul a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-gold);
	transition: width 0.3s ease;
}

nav ul a:hover::after,
nav ul a.active::after {
	width: 100%;
}

.cta {
	padding: 0.6rem 1.5rem;
	border: 2px solid var(--color-gold);
	color: var(--color-gold);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition:
		background 0.3s ease,
		color 0.3s ease;
}

.cta::after {
	display: none;
}

.cta:hover {
	background: var(--color-gold);
	color: var(--color-black);
}

.menu-toggle {
	display: none;
	position: absolute;
}

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.burger span {
	display: block;
	width: 25px;
	height: 2px;
	background: var(--color-white);
	transition:
		transform 0.3s,
		opacity 0.3s;
}

.nav-cta {
	display: none;
}

@media (max-width: 768px) {
	.burger {
		display: flex;
		z-index: 3;
	}

	.desktop-cta {
		display: none;
	}

	.nav-cta {
		display: block;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		flex-direction: column;
		background: var(--color-black);
		padding: 5rem 2rem 2rem;
		gap: 1.5rem;
		transition: right 0.3s;
		z-index: 2;
	}

	.menu-toggle:checked ~ .nav-menu {
		right: 0;
	}

	.menu-toggle:checked ~ .burger span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle:checked ~ .burger span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked ~ .burger span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* MOBILE */
@media (max-width: 768px) {
	.burger {
		display: flex;
		z-index: 3;
	}

	nav > .cta {
		display: none;
	}

	.nav-cta {
		display: block;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		flex-direction: column;
		background: var(--color-black);
		padding: 5rem 2rem 2rem;
		gap: 1.5rem;
		transition: right 0.3s;
		z-index: 2;
	}

	.menu-toggle:checked ~ .nav-menu {
		right: 0;
	}

	.menu-toggle:checked ~ .burger span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle:checked ~ .burger span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked ~ .burger span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* ======================================== */

/* UTILITY */
.label {
	color: var(--color-gold);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	font-weight: 600;
}

h2 em {
	color: var(--color-gold);
	font-style: normal;
}

.logo {
	font-weight: 700;
	font-size: 1.2rem;
}

.logo::after {
	display: none;
}

/* HERO */
.hero {
	min-height: 100vh;
	background: url("images/hero.jpg") center/cover;
	display: flex;
	align-items: center;
	padding: 5rem 2rem 2rem;
	color: #fff;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
}

.hero-content {
	position: relative;
	max-width: 680px;
}

.hero-logo {
	width: 100%;
	max-width: 673px;
	height: auto;
	margin-bottom: 2rem;
}

.hero-box {
	background: rgba(0, 0, 0, 0.7);
	padding: 2rem;
	border-radius: 1rem;
}

.hero h1 {
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

.hero p {
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

@media (max-width: 768px) {
	.hero {
		padding: 5rem 1rem 2rem;
		align-items: center;
	}

	.hero-box {
		padding: 1.5rem;
	}
}

/* BUTTONS */
.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	background: var(--color-gold);
	color: var(--color-black);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 0.25rem;
	cursor: pointer;
}

/* STATS */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	background: var(--color-black);
	padding: 3rem 2rem;
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 2rem 1rem;
}

.stat strong {
	display: block;
	font-size: clamp(2rem, 5vw, 4rem);
	color: var(--color-gold);
}

.stat span {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.7;
	font-size: clamp(0.7rem, 1.5vw, 0.9rem);
}

.stat div {
	z-index: 1;
}

.icon {
	position: absolute;
	width: clamp(80px, 12vw, 160px);
	height: clamp(80px, 12vw, 160px);
	stroke: var(--color-gold);
	opacity: 0.08;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
	.stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* O NAS */
.about-row {
	display: flex;
	max-height: 50vh;
}

.about-row.reverse {
	flex-direction: row-reverse;
}

.about-img {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	scale: 1.05;
}

.about-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		transparent 40%,
		var(--color-dark) 100%
	);
}

.reverse .about-img::after {
	background: linear-gradient(
		to left,
		transparent 40%,
		var(--color-dark) 100%
	);
}

.about-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem 6rem;
	background: var(--color-dark);
}

.about-text h2 {
	color: var(--color-gold);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	margin-bottom: 1.5rem;
}

.about-text p {
	line-height: 1.8;
	opacity: 0.85;
	max-width: 500px;
}

@media (max-width: 768px) {
	.about-row,
	.about-row.reverse {
		flex-direction: column;
		max-height: none;
	}

	.about-img {
		min-height: 40vh;
	}

	.about-text {
		padding: 2rem;
	}

	.about-img::after,
	.reverse .about-img::after {
		background: linear-gradient(
			to bottom,
			transparent 40%,
			var(--color-dark) 100%
		);
	}
}

/* ZAROBEK */
.earnings {
	background: var(--color-light);
	color: var(--color-dark);
	padding: 4rem 2rem;
	text-align: center;
}

.label-dark {
	color: var(--color-gold);
}

.earnings h2 {
	color: var(--color-dark);
}

.earnings-grid {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-top: 3rem;
}

.earnings-group h3 {
	margin-bottom: 1rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.6;
}

.earnings-tiles {
	display: flex;
	gap: 1rem;
}

.tile {
	width: 120px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--color-black);
	padding: 1rem;
}

.tile-alt {
	background: var(--color-gold);
}

.tile img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.earnings-desc {
	max-width: 700px;
	margin: 3rem auto 2rem;
	line-height: 1.7;
	opacity: 0.8;
}

@media (max-width: 768px) {
	.earnings-grid {
		flex-direction: column;
		gap: 2rem;
		align-items: center;
	}

	.earnings-tiles {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* CARDS */
.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.card {
	background: var(--color-dark);
	padding: 2rem;
	border-radius: 8px;
}

.card h3 {
	margin-bottom: 0.5rem;
}

.card p {
	font-size: 0.9rem;
	opacity: 0.7;
	margin-bottom: 1rem;
}

.card ul {
	list-style: none;
	margin-bottom: 1.5rem;
}

.card li::before {
	content: "✓ ";
	color: var(--color-gold);
}

.card li {
	font-size: 0.85rem;
	margin-bottom: 0.4rem;
}

.card a {
	color: var(--color-gold);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* Oceny */
.reviews {
	padding: 4rem 2rem;
	text-align: center;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.review-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 2rem;
}

.review-card p {
	font-style: italic;
	line-height: 1.6;
	opacity: 0.85;
}

@media (max-width: 768px) {
	.reviews-grid {
		grid-template-columns: 1fr;
	}
}

/* STEPS */
.steps {
	padding: 2rem 1rem 2rem 1rem;
	background-color: var(--color-white);
	color: var(--color-black);
}
.steps-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.step-list {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin-top: 2rem;
	counter-reset: step;
	text-align: center;
}
.step-list li {
	flex: 1;
	counter-increment: step;
	position: relative;
}
.step-list li::before {
	content: counter(step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--color-gold);
	color: var(--color-black);
	font-weight: 700;
	margin: 0 auto 1rem;
}
.step-list li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 30px;
	left: calc(50% + 28px);
	width: calc(100% - 56px);
	border-top: 2px dashed var(--color-black);
	opacity: 0.4;
}
.step-list strong {
	display: block;
	margin-bottom: 0.3rem;
}
.step-list span {
	font-size: 0.8rem;
	opacity: 0.7;
}
.steps-intro {
	opacity: 0.7;
	margin-top: 1rem;
}
.steps-cta {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 3rem;
}
@media (max-width: 768px) {
	.step-list {
		flex-direction: column;
		gap: 1.5rem;
	}
	.step-list li:not(:last-child)::after {
		display: none;
	}
	.steps-cta {
		flex-direction: column;
		align-items: center;
	}
}

/* FLEET */
.fleet {
	padding: 4rem 2rem;
	text-align: center;
	background: var(--color-dark);
}

.fleet-subtitle {
	opacity: 0.7;
	margin-top: 0.5rem;
}

.fleet-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.fleet-card {
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.fleet-card h3 {
	color: var(--color-gold);
	margin-bottom: 1rem;
}

.fleet-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
	margin-top: 3rem;
}

.fleet-gallery img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.fleet-grid {
		grid-template-columns: 1fr;
	}

	.fleet-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* FAQ */
.faq {
	padding: 4rem 2rem;
	text-align: center;
	background: var(--color-white);
	color: var(--color-black);
}

.faq h2 {
	color: var(--color-black);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin: 3rem auto;
	max-width: 1100px;
	text-align: left;
}

.faq-item {
	background: rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
}

.faq-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 1.5rem;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
	color: var(--color-black);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary span {
	color: var(--color-gold);
	font-size: 1.4rem;
	transition: transform 0.3s;
}

.faq-item[open] summary span {
	transform: rotate(45deg);
}

.faq-item p {
	padding: 0 1.5rem 1.2rem;
	line-height: 1.6;
	color: var(--color-black);
	opacity: 0.7;
}

@media (max-width: 768px) {
	.faq-grid {
		grid-template-columns: 1fr;
	}
}

/* CONTACT */
.contact {
	padding: 4rem 2rem;
	text-align: center;
}

.contact-form {
	max-width: 700px;
	margin: 3rem auto 0;
	text-align: left;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.5rem;
}

.form-group-full {
	grid-column: 1 / -1;
}

.form-group label {
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
	opacity: 0.7;
}

.form-group input,
.form-group textarea {
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	color: inherit;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s;
}

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

.form-radios {
	display: flex;
	gap: 1rem;
}

.radio-label {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	cursor: pointer;
	transition: border-color 0.3s;
}

.radio-label:has(input:checked) {
	border-color: var(--color-gold);
}

.radio-label input {
	accent-color: var(--color-gold);
}

.form-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.form-consent input[type="checkbox"] {
	margin-top: 0.3rem;
	accent-color: var(--color-gold);
}

.form-consent label {
	font-size: 0.75rem;
	opacity: 0.5;
	line-height: 1.5;
}

.contact-form button {
	display: block;
	margin: 0 auto;
}

.contact-alt {
	margin-top: 3rem;
	padding-top: 2rem;
}

.contact-alt p {
	opacity: 0.5;
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}

.contact-methods {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.contact-methods a {
	color: var(--color-gold);
	text-decoration: none;
}

.contact-methods a:hover {
	text-decoration: underline;
}

.contact-methods span {
	opacity: 0.3;
}

.contact-hours {
	font-size: 0.8rem;
	opacity: 0.4 !important;
}

@media (max-width: 768px) {
	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-radios {
		flex-direction: column;
	}

	.contact-methods {
		flex-direction: column;
		gap: 0.5rem;
	}

	.contact-methods span:not(.contact-hours) {
		display: none;
	}
}

/* FOOTER */
.footer {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	overflow: hidden;
}

.footer-img {
	background: var(--color-dark);
}

.footer-img img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.footer-content {
	background: var(--color-dark);
	padding: 3rem 2rem 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

.footer-col h3 {
	color: var(--color-gold);
	margin-bottom: 1rem;
}

.footer-col h4 {
	color: var(--color-gold);
	margin-bottom: 1rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-col p {
	line-height: 1.6;
	opacity: 0.7;
	font-size: 0.9rem;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	opacity: 0.7;
}

.footer-col ul a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-col ul a:hover {
	color: var(--color-gold);
	opacity: 1;
}

.footer-socials {
	display: flex;
	gap: 1rem;
}

.footer-socials a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: inherit;
	text-decoration: none;
	font-size: 0.8rem;
	transition:
		border-color 0.3s,
		color 0.3s;
}

.footer-socials a:hover {
	border-color: var(--color-gold);
	color: var(--color-gold);
}

.footer-bottom {
	text-align: center;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.8rem;
	opacity: 0.4;
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-socials {
		justify-content: center;
	}
}
