/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

/* ── Design Tokens ────────────────────────────────────────── */
:root {
	--ink: #0a0e14;
	--ink2: #111720;
	--steel: #1c2533;
	--rust: #c94a1a;
	--rust-lit: #e8602e;
	--mist: #8a97a8;
	--cloud: #d4dbe3;
	--white: #f5f7f9;
	--font-display: "Bebas Neue", sans-serif;
	--font-body: "DM Sans", sans-serif;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);

	--footer-border: rgba(212, 219, 227, 0.08);
	--footer-border-accent: rgba(201, 74, 26, 0.4);
	--footer-link-hover: var(--white);
	--footer-section-gap: clamp(2rem, 5vw, 4rem);

	--overlay: rgba(10, 9, 8, 0.92);
}

::selection {
	background-color: #ff6600;
	/* Turuncu arka plan */
	color: #ffffff;
	/* Yazı rengi (beyaz) */
}

/* Sadece belirli tarayıcılar (örneğin eski Firefox) için gerekebilir */
::-moz-selection {
	background-color: #ff6600;
	color: #ffffff;
}

body {
	background: var(--ink);
	color: var(--cloud);
	font-family: var(--font-body);
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--ink2);
}

::-webkit-scrollbar-thumb {
	background: var(--rust);
	border-radius: 3px;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
	width: min(1200px, 92vw);
	margin-inline: auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

/* ── Noise texture overlay ────────────────────────────────── */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	opacity: 0.03;
	pointer-events: none;
	z-index: 9999;
}

/* ═══════════════════════════════════════════════════════════
       SECTIONS SHARED
    ═══════════════════════════════════════════════════════════ */
section {
	padding: 6rem 0;
}

.section-label {
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--rust);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.section-label::before {
	content: "";
	width: 22px;
	height: 2px;
	background: var(--rust);
	display: block;
}

h2 {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 5vw, 4rem);
	color: var(--white);
	line-height: 1;
	letter-spacing: 0.03em;
	margin-bottom: 1.2rem;
}

h3 {
	font-family: var(--font-display);
	letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
       NAV
    ═══════════════════════════════════════════════════════════ */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(10, 14, 20, 0.76);
	backdrop-filter: blur(12px);
	transition:
		background 0.4s var(--ease-out),
		box-shadow 0.4s;
	padding: 1rem 0;
}

header.scrolled {
	background: rgba(10, 14, 20, 0.96);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.25rem 0;
}

.logo {
	font-family: var(--font-display);
	font-size: 1.55rem;
	letter-spacing: 0.06em;
	color: var(--white);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.logo-icon {
	display: flex;
	align-items: center;
	max-width: 50px;
}

.header-logo-wordmark {
	font-family: var(--font-display);
	font-size: 1.3rem;
	line-height: 1.1;
	letter-spacing: 0.04em;
	color: var(--white);
	display: flex;
	gap: 4px;
}

.header-logo-wordmark strong {
	color: var(--rust);
}

footer .logo-icon {
	width: 150px;
}

.logo-icon img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	list-style: none;
}

.nav-links a {
	color: var(--mist);
	text-decoration: none;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--white);
}

.nav-cta {
	background: var(--rust);
	color: var(--white) !important;
	padding: 0.5rem 1.3rem !important;
	clip-path: polygon(0 0, 100% 0, 100% 75%, 93% 100%, 0 100%);
	transition: background 0.2s !important;
}

.nav-cta:hover {
	background: var(--rust-lit) !important;
}

/* Hamburger */
.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}

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

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

.burger.open span:nth-child(2) {
	opacity: 0;
}

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

/* Mobile nav drawer */
.mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	top: 68px;
	background: rgba(10, 14, 20, 0.98);
	backdrop-filter: blur(16px);
	z-index: 99;
	padding: 3rem 2rem;
	flex-direction: column;
	justify-content: flex-start;
	gap: 2rem;
}

.mobile-nav.open {
	display: flex;
}

.mobile-nav a {
	color: var(--cloud);
	text-decoration: none;
	font-family: var(--font-display);
	font-size: 2.2rem;
	letter-spacing: 0.06em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding-bottom: 1rem;
	transition: color 0.2s;
}

.mobile-nav a:hover {
	color: var(--rust);
}

/* ═══════════════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════════════ */
#hero {
	position: relative;
	min-height: 110svh;
	display: flex;
	align-items: center;
	padding-bottom: 7rem;
	overflow: hidden;
	background-image: url(assets/shipyarhangardoor.jpeg);
	background-size: cover;
	background-position: top;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(201, 74, 26, 0.12) 0%, transparent 50%),
		linear-gradient(
			to right,
			rgba(10, 14, 20, 0.92) 0%,
			rgba(10, 14, 20, 0.65) 40%,
			rgba(10, 14, 20, 0.15) 70%,
			transparent 100%
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 79px,
			rgba(255, 255, 255, 0.02) 79px,
			rgba(255, 255, 255, 0.02) 80px
		),
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 79px,
			rgba(255, 255, 255, 0.02) 79px,
			rgba(255, 255, 255, 0.02) 80px
		);
}

.hero-bg .container {
	position: relative;
	z-index: 2;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--rust);
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-tag::before {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background: var(--rust);
}

h1 {
	font-family: var(--font-display);
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 0.92;
	letter-spacing: 0.02em;
	color: var(--white);
	margin-bottom: 1.8rem;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}

h1 em {
	font-style: normal;
	color: var(--rust);
}

.hero-sub {
	max-width: 520px;
	font-size: 1.05rem;
	color: var(--mist);
	margin-bottom: 2.8rem;
	line-height: 1.65;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease-out) 1.2s forwards;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--rust);
	color: var(--white);
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 1rem 2rem;
	clip-path: polygon(0 0, 100% 0, 100% 70%, 92% 100%, 0 100%);
	transition:
		background 0.25s,
		transform 0.2s;
}

.btn-primary:hover {
	background: var(--rust-lit);
	transform: translateY(-2px);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--cloud);
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 1rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition:
		border-color 0.25s,
		color 0.25s,
		transform 0.2s;
}

.btn-secondary:hover {
	border-color: var(--rust);
	color: var(--rust);
	transform: translateY(-2px);
}

.hero-stats {
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 0;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease-out) 1.4s forwards;
}

.stat {
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	text-align: right;
}

.stat-num {
	font-family: var(--font-display);
	font-size: 3rem;
	color: var(--white);
	line-height: 1;
}

.stat-num span {
	color: var(--rust);
}

.stat-label {
	font-size: rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mist);
	margin-top: 0.3rem;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* MARQUEE */
.marquee-wrap {
	background: var(--rust);
	overflow: hidden;
	padding: 0.75rem 0;
	white-space: nowrap;
}

.marquee-track {
	display: inline-flex;
	width: max-content;
	animation: marquee 20s linear infinite;
}

.marquee-track span {
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.85);
	padding-right: 3.5rem;
}

.marquee-track span::after {
	content: "·";
	margin-left: 3.5rem;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ═══════════════════════════════════════════════════════════
       PRODUCT GALLERY
    ═══════════════════════════════════════════════════════════ */

#products-gallery {
	background-color: var(--ink1);
	padding: 100px 0;
	color: var(--white);
}

#productsGalleryGrid {
	max-height: 1200px;
	overflow-y: scroll;
}

.products-gallery-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
	gap: 40px;
}

/* ═══════════════════════════════════════════════════════════
       PRODUCTS
    ═══════════════════════════════════════════════════════════ */
#products {
	background-color: var(--ink);
	background-image: url(assets/tersane\ hangar.webp);
}

.products-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 4rem;
	gap: 2rem;
	flex-wrap: wrap;
}

.products-header > p {
	max-width: 360px;
	color: var(--mist);
	font-size: 0.92rem;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5px;
}

.product-card {
	background: var(--ink2);
	padding: 2.5rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
	cursor: default;
	transition: background 0.3s;
}

.product-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--rust);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--ease-out);
}

.product-card:hover {
	background: var(--steel);
}

.product-card:hover::after {
	transform: scaleX(1);
}

.product-num {
	font-family: var(--font-display);
	font-size: 4rem;
	color: var(--rust);
	line-height: 1;
	margin-bottom: 1.5rem;
	user-select: none;
}

.product-icon {
	width: 48px;
	height: 48px;
	background: rgba(201, 74, 26, 0.12);
	border: 1px solid rgba(201, 74, 26, 0.3);
	display: grid;
	place-items: center;
	margin-bottom: 1.4rem;
}

.product-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--rust);
	fill: none;
	stroke-width: 1.5;
}

.product-card h3 {
	font-size: 1.4rem;
	color: var(--white);
	margin-bottom: 0.8rem;
}

.product-card p {
	font-size: 0.9rem;
	color: var(--mist);
	line-height: 1.65;
	margin-bottom: 1.4rem;
}

.product-specs {
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 1.2rem;
}

.product-specs li {
	font-size: 0.77rem;
	color: var(--mist);
	letter-spacing: 0.08em;
	padding: 0.3rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.product-specs li::before {
	content: "";
	width: 4px;
	height: 4px;
	background: var(--rust);
	display: block;
	flex-shrink: 0;
}

#products-gallery {
	background-color: var(--ink1);
	padding: 100px 0;
	color: var(--white);
}

#productsGalleryGrid {
	max-height: 1200px;
	overflow-y: scroll;
}

.products-gallery-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
	gap: 40px;
}

.gallery-section-label {
	font-family: var(--font-body);
	color: var(--rust);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 12px;
}

.gallery-section-label h2 {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1;
	margin-bottom: 20px;
	color: var(--white);
}

.gallery-products-intro {
	font-family: var(--font-body);
	color: var(--mist);
	max-width: 500px;
	line-height: 1.6;
}

/* --- Filter Tabs --- */
.gallery-filter-tabs {
	gap: 12px;
	background: var(--ink2);
	padding: 6px;
	border-radius: 4px;
	border: 1px solid var(--steel);
}

.gallery-filter-tab {
	background: transparent;
	border: none;
	color: var(--mist);
	font-family: var(--font-body);
	font-weight: 500;
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.3s var(--ease-out);
	border-radius: 2px;
	font-size: 0.9rem;
}

.gallery-filter-tab:hover {
	color: var(--white);
	background: var(--steel);
}

.gallery-filter-tab.active {
	background: var(--rust);
	color: var(--white);
}

/* --- Product Card Base --- */
.gallery-product-card {
	background: var(--ink2);
	border: 1px solid var(--steel);
	position: relative;
	transition:
		transform 0.4s var(--ease-out),
		border-color 0.4s var(--ease-out),
		opacity 0.3s ease,
		visibility 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Visibility Logic for Filter */
.gallery-product-card.hidden {
	display: none;
	/* Removes from flow so grid collapses correctly */
}

/* --- Image Wrapper & Tag --- */
.gallery-product-img-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--steel);
}

.gallery-product-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out);
}

.gallery-product-card:hover img {
	transform: scale(1.05);
}

.gallery-product-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--rust);
	color: var(--white);
	padding: 4px 10px;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 2;
}

/* --- Card Content --- */
.gallery-product-info {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gallery-product-info h3 {
	font-family: var(--font-display);
	font-size: 1.75rem;
	line-height: 1.1;
	margin-bottom: 12px;
	color: var(--white);
	text-transform: uppercase;
}

.gallery-product-info p {
	font-family: var(--font-body);
	color: var(--mist);
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 20px;
}

/* --- Link/CTA Style --- */
.gallery-product-link {
	margin-top: auto;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--rust-lit);
	display: flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	transition: gap 0.3s var(--ease-out);
	text-decoration: none;
}

.gallery-product-card:hover .gallery-product-link {
	gap: 12px;
	color: var(--white);
}

.gallery-product-card:hover {
	border-color: var(--rust);
	transform: translateY(-5px);
}

.gallery-product-card img {
	cursor: pointer;
}

/* --- Reveal Animation --- */
.reveal {
	opacity: 0;
	transform: translateY(20px);
	animation: revealIn 0.6s var(--ease-out) forwards;
}

@keyframes revealIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Projects Section ───────────────────────────────────── */
#projects {
	background: var(--ink2);
	border-top: 1px solid rgba(201, 74, 26, 0.25);
	border-bottom: 1px solid rgba(201, 74, 26, 0.25);
}

.projects-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 3rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.projects-intro {
	max-width: 420px;
	font-size: 0.9rem;
	color: var(--mist);
	line-height: 1.75;
}

/* ── Stats bar ──────────────────────────────────────────── */
.projects-stats {
	display: flex;
	align-items: center;
	gap: 0;
	background: var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 3.5rem;
	padding: 1.8rem 2.5rem;
	flex-wrap: wrap;
}

.pstat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1;
	min-width: 120px;
}

.pstat-num {
	font-family: var(--font-display);
	font-size: 2.6rem;
	color: var(--white);
	line-height: 1;
}

.pstat-num span {
	color: var(--rust);
	font-size: 1.6rem;
}

.pstat-label {
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mist);
}

.pstat-divider {
	width: 1px;
	height: 3rem;
	background: rgba(255, 255, 255, 0.08);
	margin: 0 2.5rem;
	flex-shrink: 0;
}

/* ── Grid layout ────────────────────────────────────────── */
.projects-grid-layout {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto auto auto;
	gap: 1.5px;
}

/* ── Card base ──────────────────────────────────────────── */
.proj-card {
	background: var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s var(--ease-out);
}

.proj-card:hover {
	border-color: rgba(201, 74, 26, 0.5);
}

.proj-card:hover .proj-img-wrap img {
	transform: scale(1.04);
}

/* ── Image wrap ─────────────────────────────────────────── */
.proj-img-wrap {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	flex-shrink: 0;
}

.proj-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out);
	display: block;
}

.proj-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 40%, rgba(10, 14, 20, 0.55) 100%);
	pointer-events: none;
}

/* ── Badges on image ────────────────────────────────────── */
.proj-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--rust);
	color: var(--white);
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.25rem 0.7rem;
	z-index: 2;
}

.proj-country {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	background: rgba(10, 14, 20, 0.75);
	color: var(--cloud);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	padding: 0.3rem 0.65rem;
	z-index: 2;
	backdrop-filter: blur(6px);
}

.proj-country svg {
	width: 12px;
	height: 12px;
	stroke: var(--rust);
	fill: none;
	stroke-width: 1.5;
	flex-shrink: 0;
}

/* ── Body ───────────────────────────────────────────────── */
.proj-body {
	padding: 2rem 2rem 1.8rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.proj-meta {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 0.9rem;
}

.proj-year {
	font-family: var(--font-display);
	font-size: 0.9rem;
	color: var(--rust);
	letter-spacing: 0.08em;
}

.proj-type {
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mist);
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	padding-left: 0.8rem;
}

.proj-body h3 {
	font-family: var(--font-display);
	font-size: 1.55rem;
	color: var(--white);
	letter-spacing: 0.03em;
	line-height: 1.05;
	margin-bottom: 0.85rem;
}

.proj-body p {
	font-size: 0.875rem;
	color: var(--mist);
	line-height: 1.7;
	margin-bottom: 1.4rem;
}

/* ── Spec list ──────────────────────────────────────────── */
.proj-specs {
	list-style: none;
	margin-top: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.proj-specs li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.78rem;
}

.ps-label {
	color: var(--mist);
	letter-spacing: 0.06em;
}

.ps-val {
	font-weight: 500;
	color: var(--white);
	font-family: var(--font-display);
	font-size: 0.9rem;
	letter-spacing: 0.05em;
}

/* ── CTA row ────────────────────────────────────────────── */
.projects-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.projects-cta p {
	font-size: 1rem;
	color: var(--mist);
}

/* SCROLLING BACKGROUND */

.scrolling-bg {
	animation: move-bg linear;
	animation-timeline: scroll();

	background-attachment: fixed;
	background-size: cover;
	background-position: top;
}

@keyframes move-bg {
	from {
		background-position: 50% 30%;
	}

	to {
		background-position: 50% 100%;
	}
}

/* ═══════════════════════════════════════════════════════════
       ABOUT / INTRO
    ═══════════════════════════════════════════════════════════ */
#about {
	background: var(--ink2);
	border-top: 1px solid var(--rust);
	border-bottom: 1px solid var(--rust);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.about-visual {
	position: relative;
	max-height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
}

.about-visual figure {
	max-width: 550px;
}

.about-visual figure img {
	width: 100%;
}

.about-block {
	position: absolute;
	background: var(--steel);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-block.main {
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-text p {
	color: var(--mist);
	margin-bottom: 1.4rem;
	font-size: 1rem;
}

.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-top: 0.6rem;
}

.badge-icon {
	width: 42px;
	height: 42px;
	background: rgba(201, 74, 26, 0.15);
	border: 1px solid rgba(201, 74, 26, 0.35);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.badge-icon svg {
	width: 42px;
	height: 42px;
	fill: var(--rust);
}

.badge-text {
	font-size: 0.82rem;
	color: var(--cloud);
	font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
       FEATURES
    ═══════════════════════════════════════════════════════════ */
#features {
	position: relative;
	overflow: hidden;
	background-color: var(--ink2);
}

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

.feature-item {
	padding: 2.8rem 3rem;
	border: 1px solid rgba(255, 255, 255, 0.5);
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	transition: background 0.3s;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.feature-ico {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	background: var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.07);
	display: grid;
	place-items: center;
}

.feature-ico svg {
	width: 22px;
	height: 22px;
	stroke: var(--rust);
	fill: none;
	stroke-width: 1.5;
}

.feature-item h3 {
	font-size: 1.15rem;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.feature-item p {
	font-size: 0.87rem;
	color: var(--mist);
	line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════════════════════════ */
#process {
	background-image: url(assets/uçak\ hangar2.webp);
	padding: 240px 0;
}

.scrolling-bg {
	animation: move-bg linear;
	animation-timeline: scroll();

	background-attachment: fixed;
	background-size: cover;
	background-position: top;
}

@keyframes move-bg {
	from {
		background-position: 50% 30%;
	}

	to {
		background-position: 50% 100%;
	}
}

.process-top {
	text-align: center;
	margin-bottom: 1rem;
}

.process-top .section-label {
	justify-content: center;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 4rem;
	position: relative;
}

.process-steps::before {
	content: "";
	position: absolute;
	top: 2rem;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--rust), transparent);
}

.step {
	padding: 2rem 2rem;
	position: relative;
	background-color: #1c2533af;
}

.step-dot {
	width: 4rem;
	height: 4rem;
	background: var(--ink2);
	border: 1px solid rgba(201, 74, 26, 0.4);
	display: grid;
	place-items: center;
	margin-bottom: 1.8rem;
	position: relative;
	z-index: 1;
}

.step-dot span {
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: var(--rust);
}

.step h3 {
	font-size: 1.05rem;
	color: var(--white);
	margin-bottom: 0.6rem;
}

.step p {
	font-size: 0.85rem;
	color: var(--cloud);
	line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
       OUR CE
    ═══════════════════════════════════════════════════════════ */
.qs-section {
	width: 100%;
	padding: 96px 0;
	background-color: var(--ink2);
	font-family: "DM Sans", sans-serif;
	position: relative;
	overflow: hidden;
}

.qs-container {
	width: min(1200px, 92vw);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.qs-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.qs-eyebrow-line {
	width: 32px;
	height: 2px;
	background: var(--rust);
	flex-shrink: 0;
}

.qs-eyebrow-text {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--rust);
}

.qs-heading {
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(36px, 4vw, 52px);
	line-height: 1.05;
	color: var(--white);
	margin-bottom: 20px;
	letter-spacing: 0.01em;
}

.qs-body {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.75;
	color: var(--cloud);
	max-width: 420px;
}

.qs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.qs-card {
	background: rgba(28, 37, 51, 0.6);
	border: 1px solid rgba(212, 219, 227, 0.08);
	border-radius: 12px;
	padding: 22px 20px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	transition:
		border-color 0.25s ease,
		transform 0.25s ease,
		background 0.25s ease;
	cursor: default;
}

.qs-card:hover {
	border-color: rgba(201, 74, 26, 0.45);
	background: rgba(201, 74, 26, 0.06);
	transform: translateY(-3px);
}

.qs-icon {
	width: 40px;
	height: 40px;
	background: var(--ink2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid rgba(212, 219, 227, 0.1);
}

.qs-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--rust);
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.qs-cert-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 3px;
	line-height: 1.2;
}

.qs-cert-desc {
	font-size: 12px;
	font-weight: 300;
	color: var(--cloud);
	line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════════════════════ */
#faq {
	background: var(--ink);
}

.faq-grid {
	display: grid;
	align-items: center;
	margin-top: 3.5rem;
	max-width: 820px;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item .reveal {
	transition-delay: 0.5s;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.15rem;
	letter-spacing: 0.04em;
	color: var(--white);
	transition: color 0.2s;
}

.faq-question:hover {
	color: var(--rust);
}

.faq-question svg {
	width: 20px;
	height: 20px;
	stroke: var(--rust);
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
	transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-question svg {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
	max-height: 300px;
}

.faq-answer p {
	padding-bottom: 1.5rem;
	color: var(--mist);
	font-size: 0.92rem;
	line-height: 1.7;
	max-width: 700px;
}

/* ═══════════════════════════════════════════════════════════
       CTA BAND
    ═══════════════════════════════════════════════════════════ */
#cta {
	background: var(--rust);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

#cta::before {
	content: "GET IN TOUCH";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-display);
	font-size: 16vw;
	color: rgba(0, 0, 0, 0.07);
	white-space: nowrap;
	pointer-events: none;
}

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

#cta h2 {
	color: var(--white);
	margin-bottom: 0.4rem;
}

#cta p {
	color: rgba(255, 255, 255, 0.7);
	max-width: 480px;
	font-size: 1rem;
}

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--white);
	color: var(--rust);
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 1rem 2rem;
	flex-shrink: 0;
	transition:
		background 0.2s,
		transform 0.2s;
	clip-path: polygon(0 0, 100% 0, 100% 70%, 92% 100%, 0 100%);
}

.btn-white:hover {
	background: #e8eff5;
	transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════════════════ */
#contact {
	background: var(--ink);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 5rem;
	align-items: start;
}

.contact-info {
	padding-top: 1rem;
}

.contact-info p {
	color: var(--mist);
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.c-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: rgba(201, 74, 26, 0.1);
	border: 1px solid rgba(201, 74, 26, 0.25);
	display: grid;
	place-items: center;
	margin-top: 2px;
}

.c-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--rust);
	fill: none;
	stroke-width: 1.5;
}

.c-text strong {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--mist);
	margin-bottom: 0.2rem;
	font-weight: 400;
}

.c-text a,
.c-text span {
	color: var(--cloud);
	font-size: 0.95rem;
	text-decoration: none;
}

.c-text a:hover {
	color: var(--rust);
}

.contact-form {
	background: var(--ink2);
	padding: 1rem 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form figure {
	width: 100%;
	display: grid;
	align-content: center;
	justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════ */
.site-footer {
	background: var(--ink2);
	border-top: 1px solid var(--footer-border-accent);
	font-family: var(--font-body);
	font-weight: 300;
	color: var(--mist);
	padding-top: var(--footer-section-gap);
}

/* ── Top rule stripe ──────────────────────────────────────── */
.site-footer::before {
	content: "";
	display: block;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--rust) 20%,
		var(--rust-lit) 50%,
		var(--rust) 80%,
		transparent 100%
	);
	margin-bottom: var(--footer-section-gap);
}

/* ── Main grid ────────────────────────────────────────────── */
.footer-main {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem 2.5rem;
	padding-bottom: var(--footer-section-gap);
	border-bottom: 1px solid var(--footer-border);
}

/* ── Brand column ─────────────────────────────────────────── */
.footer-brand .footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	margin-bottom: 1.25rem;
}

.footer-logo-icon {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	border: 1px solid var(--footer-border-accent);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(201, 74, 26, 0.08);
}

.footer-logo-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(600%) hue-rotate(350deg) brightness(95%);
}

.footer-logo-wordmark {
	font-family: var(--font-display);
	font-size: 1.1rem;
	line-height: 1.1;
	letter-spacing: 0.04em;
	color: var(--white);
}

.footer-logo-wordmark span {
	display: block;
	color: var(--rust);
}

.footer-tagline {
	font-size: 0.8125rem;
	line-height: 1.65;
	color: var(--mist);
	max-width: 26ch;
}

/* ── Certifications / badges ──────────────────────────────── */
.footer-badges {
	display: flex;
	gap: 0.625rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.footer-badge {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid var(--footer-border);
	color: var(--mist);
	padding: 0.2rem 0.55rem;
	border-radius: 2px;
	white-space: nowrap;
}

nav.footer-nav-col {
	display: block;
}

/* ── Nav columns ──────────────────────────────────────────── */
.footer-nav-col h4 {
	font-family: var(--font-display);
	font-size: 0.9375rem;
	letter-spacing: 0.1em;
	color: var(--white);
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 0.6rem;
}

.footer-nav-col h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 2rem;
	height: 1px;
	background: var(--rust);
}

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

.footer-nav-col ul li {
	margin-bottom: 0.35rem;
}

.footer-nav-col ul li a {
	font-size: 0.875rem;
	color: var(--mist);
	text-decoration: none;
	transition:
		color 0.2s var(--ease-out),
		padding-left 0.2s var(--ease-out);
	display: inline-block;
}

.footer-nav-col ul li a:hover {
	color: var(--white);
	padding-left: 0.4rem;
}

/* ── Contact strip ────────────────────────────────────────── */
.footer-contact-strip {
	background: var(--steel);
	border-top: 1px solid var(--footer-border);
	border-bottom: 1px solid var(--footer-border);
	padding: 1.5rem 0;
}

.footer-contact-inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-contact-label {
	font-family: var(--font-display);
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	color: var(--rust);
	flex-shrink: 0;
	text-transform: uppercase;
}

.footer-contact-divider {
	width: 1px;
	height: 2rem;
	background: var(--footer-border);
	flex-shrink: 0;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--mist);
}

.contact-item svg {
	stroke: var(--rust);
	flex-shrink: 0;
}

.contact-item a {
	color: var(--mist);
	text-decoration: none;
	transition: color 0.2s var(--ease-out);
}

.contact-item a:hover {
	color: var(--white);
}

/* ── Map + Social row ─────────────────────────────────────── */
.footer-map-social {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: start;
	padding: var(--footer-section-gap) 0;
	border-bottom: 1px solid var(--footer-border);
}

.footer-map-wrap {
	max-width: 480px;
}

.footer-map-label {
	font-family: var(--font-display);
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	color: var(--mist);
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.footer-map-frame {
	border: 1px solid var(--footer-border);
	border-radius: 4px;
	overflow: hidden;
	filter: grayscale(100%) brightness(0.6) contrast(1.2);
	transition: filter 0.35s var(--ease-out);
}

.footer-map-frame:hover {
	filter: grayscale(60%) brightness(0.75) contrast(1.1);
}

.footer-map-frame iframe {
	display: block;
	width: 100%;
	height: 200px;
	border: 0;
}

/* ── Social ───────────────────────────────────────────────── */
.footer-social {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	align-items: flex-start;
}

.footer-social-heading {
	font-family: var(--font-display);
	font-size: 1rem;
	letter-spacing: 0.1em;
	color: var(--rust-lit);
	text-transform: uppercase;
}

.social-icons {
	display: flex;
	gap: 0.625rem;
}

.social-icon {
	width: 36px;
	height: 36px;
	border: 1px solid var(--footer-border);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mist);
	text-decoration: none;
	transition:
		color 0.2s var(--ease-out),
		border-color 0.2s var(--ease-out),
		background 0.2s var(--ease-out);
	background: transparent;
}

.social-icon svg {
	width: 15px;
	height: 15px;
}

.social-icon:hover {
	color: var(--white);
	border-color: var(--rust);
	background: rgba(201, 74, 26, 0.12);
}

/* ── Bottom bar ───────────────────────────────────────────── */
.footer-bottom {
	padding: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
}

.footer-bottom-disclaimer {
	font-size: 0.75rem;
	color: rgba(138, 151, 168, 0.55);
	line-height: 1.5;
}

.footer-bottom-disclaimer a {
	color: var(--mist);
	text-decoration: underline;
	text-decoration-color: rgba(138, 151, 168, 0.3);
	text-underline-offset: 2px;
	transition: color 0.2s var(--ease-out);
}

.footer-bottom-disclaimer a:hover {
	color: var(--white);
}

.footer-bottom-legal {
	font-size: 0.75rem;
	color: rgba(138, 151, 168, 0.75);
	text-align: right;
}

.footer-bottom-legal p + p {
	margin-top: 0.1rem;
}

.pawf-ico {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
}

.pawf-ico svg {
	fill: var(--white);
}

/* ── LIGHTBOX ── */
#lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--overlay);
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.35s ease,
		visibility 0.35s;
	padding: 20px;
}

#lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lb-inner {
	position: relative;
	max-width: 900px;
	width: 100%;
	transform: scale(0.94) translateY(18px);
	transition: transform 0.4s cubic-bezier(0.22, 0.68, 0, 1.2);
}

#lightbox.active .lb-inner {
	transform: scale(1) translateY(0);
}

.lb-img-wrap {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75);
	background: #111;
}

.lb-img-wrap img {
	width: 100%;
	max-height: 75vh;
	object-fit: contain;
	display: block;
}

.lb-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	padding: 0 4px;
}

.lb-meta {
}

.lb-meta span {
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
}

.lb-meta strong {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.35rem;
	font-weight: 400;
	color: var(--text);
}

.lb-counter {
	font-size: 0.7rem;
	color: var(--muted);
	letter-spacing: 0.15em;
}

/* nav arrows */
.lb-prev,
.lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--footer-border);
	color: var(--text);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s,
		border-color 0.2s,
		transform 0.2s;
	z-index: 10;
}

.lb-prev {
	left: -68px;
}

.lb-next {
	right: -68px;
}

.lb-prev:hover,
.lb-next:hover {
	background: rgba(201, 169, 110, 0.12);
	border-color: var(--rust);
	transform: translateY(-50%) scale(1.08);
}

/* close */
.lb-close {
	position: fixed;
	top: 22px;
	right: 28px;
	background: transparent;
	border: 1px solid var(--border);
	color: var(--muted);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		color 0.2s,
		border-color 0.2s;
	z-index: 1001;
}

.lb-close:hover {
	color: var(--text);
	border-color: var(--muted);
}

/* ── LOADING SHIMMER ── */
.lb-loader {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
	background-size: 200% 100%;
	animation: shimmer 1.2s infinite;
	border-radius: 6px;
	display: none;
}

.lb-loader.show {
	display: block;
}

/* ── KEYBOARD HINT ── */
.kb-hint {
	text-align: center;
	margin-top: 50px;
	font-size: 0.68rem;
	color: var(--muted);
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.kb-hint kbd {
	display: inline-block;
	border: 1px solid #333;
	border-radius: 3px;
	padding: 1px 6px;
	font-size: 0.65rem;
	font-family: inherit;
	margin: 0 2px;
}

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

	.process-steps {
		grid-template-columns: 1fr;
	}

	.process-steps::before {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.about-grid {
		justify-content: center;
		align-items: center;
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.about-grid .about-visual {
		align-items: center;
	}
}

@media (max-width: 1023px) {
	.nav-links {
		display: none;
	}

	.burger {
		display: flex;
	}
}

@media (max-width: 992px) {
	.products-gallery-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 916px) {
	.qs-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.qs-body {
		max-width: 100%;
	}
}

@media (max-width: 900px) {
	.proj-card--featured {
		grid-template-columns: 1fr;
	}

	.proj-card--featured .proj-img-wrap {
		min-height: unset;
		aspect-ratio: 16 / 9;
	}

	.projects-stats {
		gap: 1.5rem;
		padding: 1.5rem;
	}

	.pstat-divider {
		display: none;
	}
}

@media (max-width: 768px) {
	section {
		padding: 4rem 0;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.hero-stats {
		display: none;
	}

	.qs-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.qs-body {
		max-width: 100%;
	}
}

@media (max-width: 700px) {
	.lb-prev {
		left: -10px;
	}

	.lb-next {
		right: -10px;
	}
}

@media (max-width: 680px) {
	.projects-grid-layout {
		grid-template-columns: 1fr;
	}

	.proj-card--featured {
		grid-column: auto;
	}

	.projects-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.2rem;
	}

	.projects-cta {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.footer-map-social {
		grid-template-columns: 1fr;
	}

	.footer-social {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
	}
}

@media (max-width: 560px) {
	.footer-main {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-bottom-legal {
		text-align: left;
	}
}

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

	.cta-inner {
		flex-direction: column;
		text-align: center;
	}
}

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

.scrollTop {
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: var(--rust);
	cursor: pointer;
	padding: 5px 0;
	border-radius: 10px;
	font-size: 18px;
	width: 50px;
	display: none;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-in-out;
}

.scrollTop svg {
	fill: var(--white);
}

.scrollTop:hover {
	background-color: var(--rust-lit);
}
