/* =========================================================
   Nur Web Tasarim - tema stilleri
   Renk / tipografi belirteclerinden sayfa bolumlerine dogru siralanmistir.
   Arka plan gorselleri --nur-img-* degiskenleri ile PHP'den gelir.
   ========================================================= */

:root {
	--red: #e11b22;
	--red-deep: #a3121a;
	--ink: #141416;
	--ink-soft: #4a4d55;
	--paper: #ffffff;
	--mist: #f1f2f4;
	--line: #dfe2e7;
	--wa: #1faf54;
	--wa-dark: #17853f;

	--wrap: 1180px;
	--gap: clamp(1.25rem, 3vw, 2.5rem);
	--radius: 6px;

	--font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	--font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.62;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--red-deep);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover {
	color: var(--red);
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.5rem, 6vw, 4.25rem);
}

h2 {
	font-size: clamp(1.9rem, 4vw, 2.9rem);
}

h3 {
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

p {
	margin: 0 0 1rem;
	max-width: 68ch;
}

:focus-visible {
	outline: 3px solid var(--red);
	outline-offset: 2px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 0.75rem 1rem;
	z-index: 999;
}

.skip-link:focus {
	left: 0;
}

.wrap {
	width: min(100% - 2.5rem, var(--wrap));
	margin-inline: auto;
}

.section {
	padding-block: clamp(3rem, 7vw, 5.5rem);
}

.section__head {
	max-width: 46rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section__head p {
	color: var(--ink-soft);
	font-size: 1.05rem;
}

.section__foot {
	margin-top: 2rem;
}

/* ------------------------------ Butonlar ------------------------------ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.01em;
	padding: 0.72rem 1.35rem;
	border: 2px solid transparent;
	border-radius: var(--radius);
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--call {
	background: var(--red);
	color: #fff;
}

.btn--call:hover {
	background: var(--red-deep);
	color: #fff;
}

.btn--wa {
	background: var(--wa);
	color: #fff;
}

.btn--wa:hover {
	background: var(--wa-dark);
	color: #fff;
}

.btn--dark {
	background: var(--ink);
	color: #fff;
}

.btn--dark:hover {
	background: #000;
	color: #fff;
}

.btn--ghost {
	border-color: var(--line);
	color: var(--ink);
	background: #fff;
}

.btn--lg {
	font-size: 1.2rem;
	padding: 0.9rem 1.7rem;
}

.btn--full {
	width: 100%;
}

.link-more {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--red-deep);
	text-decoration: none;
	border-bottom: 2px solid var(--red);
	padding-bottom: 2px;
}

.link-more:hover {
	color: var(--red);
}

/* ------------------------- Ustte kayan yazi -------------------------- */

.marquee {
	background: var(--ink);
	color: #fff;
	overflow: hidden;
	position: relative;
	font-size: 0.95rem;
}

.marquee__track {
	display: flex;
	width: max-content;
	padding-block: 0.5rem;
	animation: nur-marquee 34s linear infinite;
	will-change: transform;
}

.marquee:hover .marquee__track {
	animation-play-state: paused;
}

.marquee__item {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding-right: 0.5rem;
}

.marquee__tel {
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	margin-left: 0.5rem;
	text-decoration: none;
	border-bottom: 2px solid var(--red);
}

.marquee__tel:hover {
	color: #fff;
	background: var(--red);
}

.marquee__sep {
	display: inline-block;
	width: 14px;
	height: 16px;
	margin-inline: 1.4rem;
	background: var(--red);
	transform: skewX(-18deg);
}

@keyframes nur-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* ------------------------------ Baslik ------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.site-header.is-stuck {
	box-shadow: 0 6px 20px rgba(20, 20, 22, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 0.6rem;
}

.brand__link {
	display: inline-block;
	line-height: 0;
}

.brand__logo,
.custom-logo {
	width: auto;
	height: clamp(38px, 5vw, 54px);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2rem);
}

.site-nav .menu {
	display: flex;
	align-items: center;
	gap: clamp(0.8rem, 1.8vw, 1.6rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav .menu a {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--ink);
	text-decoration: none;
	padding-block: 0.4rem;
	border-bottom: 2px solid transparent;
}

.site-nav .menu a:hover,
.site-nav .menu .current-menu-item > a,
.site-nav .menu .current_page_item > a {
	color: var(--red);
	border-bottom-color: var(--red);
}

.site-nav .menu .sub-menu {
	display: none;
}

.site-nav__actions {
	display: flex;
	gap: 0.5rem;
}

.site-nav__actions .btn {
	font-size: 0.98rem;
	padding: 0.55rem 1rem;
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: 0.5rem;
	background: var(--red);
	color: #fff;
	border: 0;
	border-radius: var(--radius);
	padding: 0.6rem 0.9rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	content: "";
}

.nav-toggle__bars {
	position: relative;
}

.nav-toggle__bars::before {
	position: absolute;
	top: -6px;
}

.nav-toggle__bars::after {
	position: absolute;
	top: 6px;
}

/* ------------------------------- Hero -------------------------------- */

.hero {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -12%;
	width: 46%;
	height: 180%;
	background: var(--red);
	opacity: 0.07;
	transform: skewX(-14deg);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
}

.hero__kicker {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--red-deep);
	margin-bottom: 0.4rem;
}

.hero__title {
	margin-bottom: 1rem;
}

.flash {
	display: inline;
	color: #fff;
	background: var(--red);
	padding: 0.04em 0.3em 0.1em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.hero__lead {
	font-size: 1.12rem;
	color: var(--ink-soft);
	max-width: 34rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0 1.25rem;
}

.hero__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-size: 0.98rem;
	color: var(--ink-soft);
}

.hero__points li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.hero__points li::before {
	content: "";
	width: 10px;
	height: 10px;
	background: var(--red);
	transform: skewX(-18deg);
	flex: none;
}

.hero__media {
	position: relative;
}

.hero__image {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: 0 18px 40px rgba(20, 20, 22, 0.13);
}

/* ------------------------------ Kartlar ------------------------------ */

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.cards--3 {
	grid-template-columns: repeat(3, 1fr);
}

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--red);
	padding: 1.5rem 1.4rem;
}

.card h3 {
	margin-bottom: 0.35em;
}

.card p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.99rem;
}

.card__icon {
	display: inline-flex;
	color: var(--red);
	margin-bottom: 0.9rem;
}

.icon {
	width: 32px;
	height: 32px;
}

.card--post {
	border-left-width: 1px;
	padding: 0 0 1.4rem;
	overflow: hidden;
}

.card--post .card__title,
.card--post p,
.card--post .link-more {
	margin-inline: 1.3rem;
}

.card--post .card__title {
	margin-top: 1.1rem;
	font-size: 1.35rem;
}

.card--post .card__title a {
	color: var(--ink);
	text-decoration: none;
}

.card--post .card__title a:hover {
	color: var(--red);
}

/* ------------------------------ Slider ------------------------------- */

.showcase {
	background: var(--mist);
}

.slider {
	position: relative;
}

.slider__viewport {
	overflow: hidden;
	border: 1px solid var(--line);
	background: #fff;
}

.slider__track {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: transform 0.45s ease;
}

.slider__slide {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.25rem;
	background: #fff;
}

.slider__image {
	max-height: 620px;
	width: auto;
	max-width: 100%;
	border-radius: 4px;
}

.slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.1rem;
}

.slider__arrow {
	width: 46px;
	height: 46px;
	border: 2px solid var(--ink);
	background: #fff;
	color: var(--ink);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	border-radius: var(--radius);
}

.slider__arrow:hover {
	background: var(--ink);
	color: #fff;
}

.slider__dots {
	display: flex;
	gap: 0.5rem;
}

.slider__dot {
	width: 26px;
	height: 6px;
	border: 0;
	padding: 0;
	background: #c7cad1;
	cursor: pointer;
	transform: skewX(-18deg);
}

.slider__dot.is-active {
	background: var(--red);
}

/* ------------------------------- Neden ------------------------------- */

.why__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
}

.facts {
	margin: 1.5rem 0 2rem;
	display: grid;
	gap: 1rem;
}

.fact {
	border-left: 4px solid var(--red);
	padding-left: 1rem;
}

.fact dt {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.2rem;
}

.fact dd {
	margin: 0.15rem 0 0;
	color: var(--ink-soft);
}

.why__media {
	margin: 0;
}

.why__image {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: 0 16px 36px rgba(20, 20, 22, 0.12);
}

/* ------------------------------ Adimlar ------------------------------ */

.steps {
	background: var(--ink);
	color: #fff;
	position: relative;
	background-image: linear-gradient(rgba(16, 16, 18, 0.93), rgba(16, 16, 18, 0.97)), var(--nur-img-cta);
	background-size: cover;
	background-position: center;
}

.steps .section__head p {
	color: #c9ccd3;
}

.steps__list {
	list-style: none;
	counter-reset: adim;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.steps__list li {
	counter-increment: adim;
	border-top: 4px solid var(--red);
	padding-top: 1rem;
}

.steps__list li::before {
	content: counter(adim);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1;
	color: var(--red);
	display: block;
	margin-bottom: 0.3rem;
}

.steps__list h3 {
	margin-bottom: 0.3em;
}

.steps__list p {
	color: #c9ccd3;
	font-size: 0.98rem;
	margin: 0;
}

/* --------------------------- Iletisim alani -------------------------- */

.contact-lite__inner,
.contact__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: start;
}

.contact-list {
	display: grid;
	gap: 0.4rem;
}

.contact-list a {
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--line);
}

.contact-list a:hover {
	color: var(--red);
	border-bottom-color: var(--red);
}

.contact-list--lg {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	margin-top: 1.5rem;
}

.contact-blocks {
	list-style: none;
	margin: 1.5rem 0 2rem;
	padding: 0;
	display: grid;
	gap: 1.1rem;
}

.contact-blocks li {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
}

.contact-blocks__icon {
	color: var(--red);
	flex: none;
	margin-top: 0.2rem;
}

.contact-blocks h3 {
	font-size: 1.1rem;
	margin-bottom: 0.15em;
}

.contact-blocks a,
.contact-blocks p {
	margin: 0;
	color: var(--ink);
	text-decoration: none;
	font-size: 1.05rem;
}

.contact-blocks a:hover {
	color: var(--red);
}

.map-embed iframe {
	width: 100%;
	min-height: 320px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.map-hint {
	background: var(--mist);
	border-left: 4px solid var(--red);
	padding: 1rem;
	font-size: 0.95rem;
	color: var(--ink-soft);
}

/* -------------------------------- Form -------------------------------- */

.nur-form {
	background: var(--mist);
	border: 1px solid var(--line);
	padding: clamp(1.25rem, 3vw, 2rem);
}

.nur-form__row {
	margin-bottom: 0.9rem;
	display: grid;
	gap: 0.3rem;
}

.nur-form label {
	font-weight: 600;
	font-size: 0.95rem;
}

.nur-form .opt {
	font-weight: 400;
	color: var(--ink-soft);
}

.nur-form input,
.nur-form select,
.nur-form textarea {
	font-family: inherit;
	font-size: 1rem;
	padding: 0.7rem 0.8rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	width: 100%;
}

.nur-form input:focus,
.nur-form select:focus,
.nur-form textarea:focus {
	border-color: var(--red);
	outline: 2px solid rgba(225, 27, 34, 0.25);
	outline-offset: 0;
}

.nur-form__hp {
	position: absolute;
	left: -9999px;
}

.nur-form__note {
	font-size: 0.88rem;
	color: var(--ink-soft);
	margin: 0.8rem 0 0;
}

.form-notice {
	border-left: 4px solid var(--red);
	background: #fff;
	padding: 0.8rem 1rem;
	margin: 0 0 1rem;
	font-weight: 600;
}

.form-notice--ok {
	border-left-color: var(--wa);
}

/* ------------------------------ Hizmetler ----------------------------- */

.service-list {
	display: grid;
	gap: clamp(2.5rem, 6vw, 4.5rem);
}

.service {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.service--flip .service__body {
	order: 2;
}

.service__icon {
	display: inline-flex;
	color: var(--red);
	margin-bottom: 0.7rem;
}

.service__media {
	margin: 0;
	background: var(--mist);
	border: 1px solid var(--line);
	padding: 1rem;
	display: flex;
	justify-content: center;
}

.service__image {
	max-height: 480px;
	width: auto;
	max-width: 100%;
}

.ticks {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.ticks li {
	position: relative;
	padding-left: 1.7rem;
	color: var(--ink-soft);
}

.ticks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 11px;
	height: 11px;
	background: var(--red);
	transform: skewX(-18deg);
}

/* ------------------------- Sayfa baslik bandi ------------------------- */

.page-hero {
	background: var(--mist);
	border-bottom: 1px solid var(--line);
	padding-block: clamp(2rem, 5vw, 3.5rem);
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: "";
	position: absolute;
	top: 0;
	right: -6%;
	width: 26%;
	height: 100%;
	background: var(--red);
	opacity: 0.08;
	transform: skewX(-14deg);
}

.page-hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	margin-bottom: 0.3em;
}

.page-hero__lead {
	color: var(--ink-soft);
	font-size: 1.1rem;
	position: relative;
}

.crumbs {
	font-size: 0.92rem;
	color: var(--ink-soft);
	margin-bottom: 0.8rem;
	display: flex;
	gap: 0.4rem;
}

.crumbs a {
	color: var(--ink-soft);
	text-decoration: none;
}

.crumbs a:hover {
	color: var(--red);
}

/* -------------------------- Hakkimizda / icerik ----------------------- */

.about__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
}

.about__media {
	margin: 0;
	background: var(--mist);
	border: 1px solid var(--line);
	padding: 1rem;
	display: flex;
	justify-content: center;
}

.about__image {
	max-height: 560px;
	width: auto;
	max-width: 100%;
}

.values {
	background: var(--mist);
}

.entry-content--narrow {
	max-width: 46rem;
}

.entry-content h2 {
	margin-top: 1.6em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.2rem;
}

.entry-thumb {
	margin: 0 0 2rem;
}

.plain-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pagination {
	margin-top: 2rem;
}

.pagination .page-numbers {
	display: inline-block;
	padding: 0.4rem 0.75rem;
	border: 1px solid var(--line);
	margin-right: 0.3rem;
	text-decoration: none;
	color: var(--ink);
}

.pagination .current {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

/* ------------------------------ CTA bandi ----------------------------- */

.cta-band {
	background-image: linear-gradient(90deg, rgba(140, 14, 21, 0.95), rgba(200, 24, 31, 0.78)), var(--nur-img-cta);
	background-size: cover;
	background-position: center;
	color: #fff;
	padding-block: clamp(2.25rem, 5vw, 3.5rem);
}

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

.cta-band h2 {
	margin-bottom: 0.25em;
}

.cta-band p {
	margin: 0;
	max-width: 46ch;
	color: #ffe7e8;
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.cta-band .btn--call {
	background: #fff;
	color: var(--red-deep);
}

.cta-band .btn--call:hover {
	background: var(--ink);
	color: #fff;
}

/* ------------------------------- Footer ------------------------------- */

.site-footer {
	background: var(--ink);
	color: #c9ccd3;
	padding-top: clamp(2.5rem, 5vw, 3.5rem);
	font-size: 0.98rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 2rem;
	padding-bottom: 2.5rem;
}

.site-footer h3 {
	color: #fff;
	font-size: 1.2rem;
	margin-bottom: 0.7em;
}

.site-footer__logo {
	height: 46px;
	width: auto;
	margin-bottom: 1rem;
}

.site-footer p {
	color: #c9ccd3;
}

.site-footer .plain-list li {
	margin-bottom: 0.35rem;
}

.site-footer a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer a:hover {
	color: #fff;
	border-bottom-color: var(--red);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding-block: 1.1rem 5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	justify-content: space-between;
	font-size: 0.9rem;
}

.site-footer__bottom p {
	margin: 0;
}

/* --------------------- Sabit arama / WhatsApp butonu ------------------- */

.floating-cta {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 120;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.floating-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1rem;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.02rem;
	box-shadow: 0 8px 22px rgba(20, 20, 22, 0.25);
}

.floating-cta__btn svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
	flex: none;
}

.floating-cta__btn--wa {
	background: var(--wa);
}

.floating-cta__btn--wa:hover {
	background: var(--wa-dark);
	color: #fff;
}

.floating-cta__btn--call {
	background: var(--red);
}

.floating-cta__btn--call:hover {
	background: var(--red-deep);
	color: #fff;
}

/* ------------------------------ Responsive ---------------------------- */

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

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

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

@media (max-width: 900px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 86vw);
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 1rem;
		padding: 5rem 1.5rem 2rem;
		transform: translateX(105%);
		transition: transform 0.25s ease;
		box-shadow: -10px 0 30px rgba(20, 20, 22, 0.18);
		overflow-y: auto;
	}

	.site-nav.is-open {
		transform: translateX(0);
	}

	.site-nav .menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav .menu li {
		border-bottom: 1px solid var(--line);
	}

	.site-nav .menu a {
		display: block;
		padding: 0.85rem 0;
		font-size: 1.2rem;
	}

	.site-nav__actions {
		flex-direction: column;
		margin-top: 0.5rem;
	}

	.site-nav__actions .btn {
		font-size: 1.05rem;
		padding: 0.75rem 1rem;
	}

	body.nav-open {
		overflow: hidden;
	}

	.hero__inner,
	.why__inner,
	.about__inner,
	.service,
	.contact__inner,
	.contact-lite__inner {
		grid-template-columns: 1fr;
	}

	.service--flip .service__body {
		order: 0;
	}

	.hero__media {
		order: -1;
	}

	.floating-cta {
		right: 12px;
		bottom: 12px;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.cards,
	.cards--3,
	.steps__list,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.hero__actions .btn,
	.cta-band__actions .btn {
		width: 100%;
	}

	.slider__image {
		max-height: 420px;
	}

	.floating-cta {
		right: 10px;
		left: 10px;
		bottom: 10px;
		flex-direction: row;
	}

	.floating-cta__btn {
		flex: 1;
		justify-content: center;
	}

	.site-footer__bottom {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.marquee__track {
		animation: none;
	}

	.slider__track {
		transition: none;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

/* ------------------------------ Yazdirma ------------------------------ */

@media print {
	.marquee,
	.floating-cta,
	.site-nav__actions,
	.nav-toggle,
	.cta-band {
		display: none !important;
	}
}
