/**
 * AFG Reklam Ajansı — kurumsal koyu tema + dengeli tipografi
 */

:root {
	--afg-bg: #0a0a0b;
	--afg-bg-alt: #111113;
	--afg-surface: #161618;
	--afg-surface-muted: #1c1c1f;
	--afg-border: rgba(255, 255, 255, 0.08);
	--afg-border-strong: rgba(255, 255, 255, 0.14);
	--afg-text: #d4d4d8;
	--afg-text-muted: #9ca3af;
	--afg-heading: #fafafa;
	--afg-accent: #fafafa;
	--afg-accent-hover: #ffffff;
	--afg-accent-soft: rgba(255, 255, 255, 0.08);
	--afg-line: #f97316;
	--afg-link: #e4e4e7;
	--afg-header-h: 92px;
	--afg-radius: 10px;
	--afg-radius-lg: 16px;
	--afg-max: 1140px;
	--afg-font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--afg-display: "Archivo", var(--afg-font);
	--afg-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
	--afg-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);
}

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

html {
	scroll-behavior: smooth;
}

body.afg-site {
	margin: 0;
	font-family: var(--afg-font) !important;
	font-size: 1rem;
	line-height: 1.65;
	font-weight: 400;
	color: var(--afg-text) !important;
	background: var(--afg-bg) !important;
	background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249, 115, 22, 0.08), transparent 55%) !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.afg-site main.afg-main {
	display: block;
	overflow: visible;
	width: 100%;
}

/* WOW site.css bazı ortamlarda section yüksekliği sorun çıkarırsa */
body.afg-site section.afg-hero {
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
}

body.afg-site img {
	max-width: 100%;
	height: auto;
}

body.afg-site h1,
body.afg-site h2,
body.afg-site h3,
body.afg-site h4 {
	font-family: var(--afg-display) !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em;
	color: var(--afg-heading) !important;
}

body.afg-site a {
	color: var(--afg-link);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

body.afg-site a:hover {
	color: var(--afg-accent-hover);
	border-bottom-color: currentColor;
}

body.afg-site .afg-top a,
body.afg-site .navbar a,
body.afg-site .afg-social-icon,
body.afg-site .footer-two a,
body.afg-site .owl-nav button,
body.afg-site .back-to-top,
body.afg-site .afg-contact__phone {
	border-bottom: none !important;
}

/* --- Üst bar --- */
body.afg-site .afg-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 11, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--afg-border);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

body.afg-site .afg-top.afg-top--scrolled {
	background: rgba(10, 10, 11, 0.94);
	box-shadow: var(--afg-shadow);
}

body.afg-site .nav-container {
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	display: flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	height: var(--afg-header-h) !important;
	max-width: var(--afg-max);
	width: 100% !important;
	margin: 0 auto !important;
	padding: 0 1.25rem !important;
	box-sizing: border-box;
}

body.afg-site .nav-container .checkbox {
	position: absolute !important;
	width: 48px !important;
	height: 48px !important;
	top: 50% !important;
	right: 0.75rem !important;
	left: auto !important;
	margin: 0;
	margin-top: -24px !important;
	opacity: 0;
	cursor: pointer;
	z-index: 1002;
}

body.afg-site .nav-container .button {
	display: none !important;
}

body.afg-site .nav-container .hamburger-lines {
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	display: flex !important;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	width: 26px;
	height: 18px;
	z-index: 1001;
	cursor: pointer;
	flex: 0 0 auto;
	flex-shrink: 0;
	margin-left: auto;
}

/* span.line inline olduğunda height uygulanmaz — çizgiler görünmezdi */
body.afg-site .nav-container .hamburger-lines .line {
	display: block !important;
	width: 100% !important;
	flex-shrink: 0;
	background: var(--afg-heading) !important;
	height: 3px !important;
	border-radius: 2px;
}

body.afg-site .nav-container .hamburger-lines .line1 {
	transform-origin: 50% 50%;
	transition: transform 0.3s ease, background 0.2s ease;
}

body.afg-site .nav-container .hamburger-lines .line2 {
	transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

body.afg-site .nav-container .hamburger-lines .line3 {
	transform-origin: 50% 50%;
	transition: transform 0.3s ease, background 0.2s ease;
}

body.afg-site .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1,
body.afg-site .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2,
body.afg-site .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
	background: var(--afg-line) !important;
}

body.afg-site .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
	transform: translateY(7.5px) rotate(45deg);
}

body.afg-site .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
	opacity: 0;
	transform: scaleX(0);
}

body.afg-site .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
	transform: translateY(-7.5px) rotate(-45deg);
}

body.afg-site .logo {
	position: relative !important;
	top: 0 !important;
	right: auto !important;
	width: auto !important;
	flex: 0 1 auto;
	min-width: 0;
}

body.afg-site .logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

body.afg-site .logo img {
	float: none !important;
	position: relative !important;
	bottom: auto !important;
	height: clamp(56px, 5.5vw, 72px);
	width: auto;
	max-width: min(320px, 50vw);
	min-height: 52px;
	object-fit: contain;
	filter: none;
}

/* Menü: masaüstü */
body.afg-site .navbar .menu-items {
	position: relative !important;
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.1rem 0.2rem;
	height: auto !important;
	width: auto !important;
	max-width: none;
	margin: 0 !important;
	margin-left: auto !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	transform: none !important;
	transition: none !important;
	text-align: right !important;
	flex: 0 1 auto;
	list-style: none;
}

body.afg-site .navbar .menu-items li {
	list-style: none;
	font-family: var(--afg-display) !important;
	font-size: 0.6875rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.afg-site .navbar .nav-container a {
	font-family: var(--afg-display) !important;
	font-size: 0.6875rem !important;
	font-weight: 600 !important;
	padding: 0.5rem 0.4rem !important;
	color: var(--afg-text-muted) !important;
	border-radius: 0;
	letter-spacing: 0.1em;
	transition: color 0.2s ease, opacity 0.2s ease;
}

body.afg-site .navbar .nav-container a:hover {
	color: var(--afg-heading) !important;
	background: transparent !important;
	opacity: 1;
	border-bottom: none !important;
}

/* --- Hero --- */
body.afg-site .sliders {
	position: relative;
	margin-top: var(--afg-header-h);
}

body.afg-site .sliders .owl-carousel .item {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 var(--afg-radius-lg) var(--afg-radius-lg);
}

body.afg-site .sliders .owl-carousel .item > img {
	width: 100% !important;
	height: 100vh !important;
	object-fit: cover !important;
	filter: brightness(0.55) contrast(1.02) saturate(1.05) !important;
}

body.afg-site .afg-hero-caption {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem 1.25rem;
	pointer-events: none;
}

body.afg-site .afg-hero-caption .slider-span {
	font-family: var(--afg-display) !important;
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: clamp(0.65rem, 1.6vw, 0.8125rem) !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase;
	font-weight: 600;
}

body.afg-site .afg-hero-caption h1 {
	font-family: var(--afg-display) !important;
	color: #fff !important;
	font-size: clamp(1.75rem, 4.5vw, 3rem) !important;
	font-weight: 700 !important;
	line-height: 1.12 !important;
	max-width: 22ch;
	margin-top: 0.75rem !important;
	text-shadow: 0 6px 32px rgba(0, 0, 0, 0.4);
	letter-spacing: -0.03em !important;
}

/* --- Hakkımızda --- */
body.afg-site .afg-container-tight {
	max-width: var(--afg-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 4vw, 2rem);
	padding-right: clamp(1rem, 4vw, 2rem);
}

body.afg-site .about-afg {
	margin-bottom: 0 !important;
	padding: clamp(3rem, 10vw, 5.5rem) 0;
	background: var(--afg-bg-alt);
	border-bottom: 1px solid var(--afg-border);
}

body.afg-site .afg-about-row {
	row-gap: 2rem;
}

body.afg-site .afg-display-title {
	font-family: var(--afg-display) !important;
	font-size: clamp(1.5rem, 2.8vw, 1.875rem) !important;
	line-height: 1.25 !important;
	font-weight: 700 !important;
	color: var(--afg-heading) !important;
	letter-spacing: -0.02em;
	margin: 0;
}

body.afg-site .afg-subtitle {
	font-family: var(--afg-display) !important;
	font-size: clamp(1.05rem, 1.8vw, 1.2rem) !important;
	font-weight: 700 !important;
	color: var(--afg-heading) !important;
	margin: 0;
	letter-spacing: -0.015em;
}

body.afg-site .afg-lead {
	font-family: var(--afg-font) !important;
	color: var(--afg-text) !important;
	font-size: 1rem !important;
	line-height: 1.65 !important;
	margin: 0;
	max-width: 42rem;
	font-weight: 400;
}

/* Veritabanından gelen HTML (inline büyük font) — gövde ile aynı ölçek */
body.afg-site .afg-prose,
body.afg-site .afg-prose p,
body.afg-site .afg-prose span,
body.afg-site .afg-prose div,
body.afg-site .afg-prose li,
body.afg-site .afg-prose td,
body.afg-site .afg-prose th {
	font-family: var(--afg-font) !important;
	font-size: 1rem !important;
	line-height: 1.65 !important;
	font-weight: 400 !important;
	color: var(--afg-text) !important;
}

body.afg-site .afg-prose strong,
body.afg-site .afg-prose b {
	font-weight: 600 !important;
}

body.afg-site .afg-prose a {
	color: var(--afg-link) !important;
	border-bottom: none !important;
}

body.afg-site .afg-prose a:hover {
	color: var(--afg-heading) !important;
}

body.afg-site .afg-prose h1,
body.afg-site .afg-prose h2,
body.afg-site .afg-prose h3 {
	font-family: var(--afg-display) !important;
	font-size: 1.125rem !important;
	line-height: 1.35 !important;
	font-weight: 700 !important;
	color: var(--afg-heading) !important;
	margin: 0.75rem 0 0.5rem !important;
}

body.afg-site .afg-body-text {
	font-family: var(--afg-font) !important;
	color: var(--afg-text) !important;
	font-size: 1rem !important;
	line-height: 1.65 !important;
	margin: 0;
	max-width: 42rem;
	font-weight: 400;
}

body.afg-site .afg-about-media {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	border-radius: 1.25rem;
	overflow: hidden;
	border: 1px solid var(--afg-border);
	box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

body.afg-site .afg-about-media img {
	display: block;
	width: 100%;
	height: auto;
}

/* --- Hizmetler (harita + açık katman; görseller kutusuz) --- */
body.afg-site .afg-services-wrap {
	position: relative;
	margin: 0 auto !important;
	padding: 0 !important;
	max-width: none;
	width: 100%;
	border: none;
	box-shadow: none;
	border-radius: 0;
	overflow: visible;
	background-color: var(--afg-surface-muted);
}

body.afg-site .afg-services-wrap::before {
	display: none;
}

body.afg-site .afg-services-inner {
	position: relative;
	max-width: var(--afg-max);
	margin: 0 auto;
	padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1rem, 4vw, 2rem) clamp(3.5rem, 9vw, 5.5rem);
}

body.afg-site .afg-services-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(180deg, rgba(17, 17, 19, 0.96) 0%, rgba(10, 10, 11, 0.92) 50%, rgba(17, 17, 19, 0.94) 100%);
	pointer-events: none;
}

body.afg-site .afg-services-inner > * {
	position: relative;
	z-index: 1;
}

body.afg-site .afg-services__header {
	margin-bottom: clamp(2.25rem, 6vw, 3.75rem);
}

body.afg-site .afg-eyebrow {
	font-family: var(--afg-display) !important;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--afg-text-muted) !important;
	margin: 0 0 0.65rem;
}

body.afg-site .afg-services__title {
	font-family: var(--afg-display) !important;
	font-size: clamp(1.65rem, 3.2vw, 2.15rem) !important;
	font-weight: 700 !important;
	color: var(--afg-heading) !important;
	margin: 0;
	letter-spacing: -0.025em;
}

body.afg-site .afg-service-pair {
	padding-bottom: clamp(2.25rem, 6vw, 3.5rem);
	margin-bottom: clamp(2.25rem, 6vw, 3.5rem);
	border-bottom: 1px solid var(--afg-border);
}

body.afg-site .afg-service-pair:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

body.afg-site .afg-service-figure {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
}

body.afg-site .afg-service-figure img {
	display: block;
	width: 100%;
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	object-fit: contain;
	border-radius: 1rem;
	border: 1px solid var(--afg-border);
	box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.5);
}

body.afg-site .afg-service-copy {
	padding-top: 0.35rem;
}

@media (min-width: 992px) {
	body.afg-site .afg-service-copy {
		padding-left: clamp(0.25rem, 2vw, 2rem);
		padding-right: clamp(0.25rem, 2vw, 2rem);
	}
}

body.afg-site .afg-service-name {
	font-family: var(--afg-display) !important;
	font-size: 0.8125rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.14em !important;
	color: var(--afg-heading) !important;
	margin: 0 0 1rem;
	padding-left: 1rem;
	border-left: 3px solid var(--afg-line);
	line-height: 1.4;
}

body.afg-site .afg-service-text {
	font-family: var(--afg-font) !important;
	margin: 0;
	font-size: 1rem !important;
	line-height: 1.65 !important;
	font-weight: 400;
	color: var(--afg-text) !important;
	max-width: 40rem;
}

/* --- Referanslar --- */
body.afg-site .references {
	padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem) !important;
	max-width: var(--afg-max);
	margin-left: auto !important;
	margin-right: auto !important;
	background: linear-gradient(180deg, var(--afg-bg-alt) 0%, var(--afg-bg) 40%, var(--afg-bg-alt) 100%);
	border-top: 1px solid var(--afg-border);
	border-bottom: 1px solid var(--afg-border);
}

body.afg-site .afg-references__title {
	font-family: var(--afg-display) !important;
	font-size: clamp(1.65rem, 3.2vw, 2.1rem) !important;
	font-weight: 700 !important;
	color: var(--afg-heading) !important;
	margin: 0.5rem 0 0;
	letter-spacing: -0.025em;
}

body.afg-site .references .afg-ref-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(140px, 26vw, 200px);
	padding: clamp(0.65rem, 2vw, 1.1rem) clamp(0.75rem, 1.8vw, 1.2rem);
	border-radius: var(--afg-radius);
	background: #ffffff !important;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.afg-site .references .afg-ref-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px -12px rgba(0, 0, 0, 0.45);
	border-color: rgba(0, 0, 0, 0.12);
}

body.afg-site .references .afg-ref-item img {
	display: block;
	width: auto;
	height: auto;
	max-height: clamp(100px, 20vw, 160px);
	max-width: min(95%, 300px);
	object-fit: contain;
	object-position: center;
	margin: 0 auto;
}

/* --- İletişim (grid, kutu yok) --- */
body.afg-site #iletisim.afg-contact {
	max-width: var(--afg-max);
	margin: 0 auto;
	padding: clamp(3rem, 8vw, 4.5rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
}

body.afg-site .afg-contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 2.5rem);
	align-items: start;
	padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
	border-bottom: 1px solid var(--afg-border);
	margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 768px) {
	body.afg-site .afg-contact__grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
		gap: 2rem 3rem;
		align-items: center;
	}
}

body.afg-site .afg-contact__primary {
	text-align: left;
}

@media (max-width: 767.98px) {
	body.afg-site .afg-contact__primary {
		text-align: center;
	}
}

body.afg-site .afg-contact__label {
	font-family: var(--afg-display) !important;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--afg-text-muted) !important;
	margin: 0 0 0.5rem;
}

body.afg-site .afg-contact__phone {
	display: inline-block;
	font-family: var(--afg-display) !important;
	font-size: clamp(1.35rem, 3vw, 1.75rem) !important;
	font-weight: 700 !important;
	color: var(--afg-heading) !important;
	line-height: 1.2;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

body.afg-site .afg-contact__phone:hover {
	color: var(--afg-text-muted) !important;
	border-bottom: none !important;
}

body.afg-site .afg-contact__address {
	font-style: normal;
	font-size: 1rem !important;
	line-height: 1.65 !important;
	color: var(--afg-text-muted) !important;
	margin: 0;
	max-width: 28rem;
}

@media (max-width: 767.98px) {
	body.afg-site .afg-contact__address {
		margin-left: auto;
		margin-right: auto;
	}
}

body.afg-site .afg-contact__aside {
	padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
	border-radius: var(--afg-radius);
	background: var(--afg-surface-muted);
	border: 1px solid var(--afg-border-strong);
	text-align: center;
}

@media (min-width: 768px) {
	body.afg-site .afg-contact__aside {
		text-align: left;
	}
}

body.afg-site .afg-contact__social-text {
	margin: 0 0 1.1rem;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--afg-text) !important;
}

body.afg-site .afg-contact__icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
}

@media (min-width: 768px) {
	body.afg-site .afg-contact__icons {
		justify-content: flex-start;
	}
}

body.afg-site .afg-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--afg-surface);
	color: var(--afg-heading) !important;
	border: 1px solid var(--afg-border);
	font-size: 1.1rem;
	transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

body.afg-site .afg-social-icon:hover {
	background: var(--afg-heading);
	color: #0a0a0b !important;
	border-color: var(--afg-heading);
	transform: translateY(-2px);
}

body.afg-site .afg-contact__map {
	border-radius: var(--afg-radius-lg);
	overflow: hidden;
	border: 1px solid var(--afg-border);
	box-shadow: var(--afg-shadow);
}

body.afg-site .afg-contact__map iframe {
	display: block;
	width: 100%;
	vertical-align: middle;
}

/* Modal (genel) */
body.afg-site .modal-content {
	background: var(--afg-surface) !important;
	color: var(--afg-text) !important;
	border: 1px solid var(--afg-border) !important;
	border-radius: var(--afg-radius-lg) !important;
	box-shadow: var(--afg-shadow-lg);
}

body.afg-site .modal-header,
body.afg-site .modal-body,
body.afg-site .modal-footer {
	border-color: var(--afg-border) !important;
}

body.afg-site .modal-title {
	color: var(--afg-heading) !important;
}

body.afg-site .modal-body {
	line-height: 1.75;
}

body.afg-site .btn-secondary {
	background: var(--afg-surface-muted) !important;
	color: var(--afg-heading) !important;
	border: 1px solid var(--afg-border-strong) !important;
	border-radius: 999px !important;
}

/* Footer */
body.afg-site .footer-two {
	background: var(--afg-surface-muted) !important;
	background-image: none !important;
	border-top: 1px solid var(--afg-border);
	margin-top: 3rem;
}

body.afg-site .footer-two .copyright-text,
body.afg-site .footer-two .copyright-text a {
	color: var(--afg-text-muted) !important;
	font-size: 0.875rem;
}

body.afg-site .footer-two .copyright-text a:hover {
	color: var(--afg-heading) !important;
	border-bottom: none !important;
}

body.afg-site .footer-two hr {
	border-color: var(--afg-border);
	opacity: 1;
}

/* Breadcrumb iç sayfalar */
body.afg-site section.breadcrumb-area {
	padding-top: calc(var(--afg-header-h) + 0.35rem);
	position: relative;
}

body.afg-site .breadcrumb-area .page-title,
body.afg-site .breadcrumb-nav a {
	color: #fff !important;
}

body.afg-site .contact-part h2,
body.afg-site .contact-part p,
body.afg-site .contact-part .desc a {
	color: var(--afg-text) !important;
}

body.afg-site .contact-part .desc a:hover {
	color: var(--afg-heading) !important;
	border-bottom-color: var(--afg-heading) !important;
}

/* Owl: hero koyu */
body.afg-site .sliders .owl-theme .owl-dots .owl-dot span {
	background: rgba(255, 255, 255, 0.4) !important;
}

body.afg-site .sliders .owl-theme .owl-dots .owl-dot.active span,
body.afg-site .sliders .owl-theme .owl-dots .owl-dot:hover span {
	background: #fff !important;
}

body.afg-site .sliders .owl-theme .owl-nav button.owl-prev,
body.afg-site .sliders .owl-theme .owl-nav button.owl-next {
	background: rgba(255, 255, 255, 0.2) !important;
	color: #fff !important;
	border-radius: 12px !important;
}

/* Owl: referanslar koyu zemin */
body.afg-site .references .owl-theme .owl-dots .owl-dot span {
	background: rgba(255, 255, 255, 0.2) !important;
}

body.afg-site .references .owl-theme .owl-dots .owl-dot.active span,
body.afg-site .references .owl-theme .owl-dots .owl-dot:hover span {
	background: var(--afg-line) !important;
}

body.afg-site .references .owl-theme .owl-nav button.owl-prev,
body.afg-site .references .owl-theme .owl-nav button.owl-next {
	background: var(--afg-surface-muted) !important;
	color: var(--afg-heading) !important;
	border-radius: 12px !important;
	border: 1px solid var(--afg-border) !important;
}

/* Yukarı çık */
body.afg-site .back-to-top {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--afg-surface-muted);
	color: var(--afg-heading) !important;
	border: 1px solid var(--afg-border-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--afg-shadow);
	z-index: 900;
	opacity: 0.95;
	transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

body.afg-site .back-to-top:hover {
	background: var(--afg-heading);
	color: #0a0a0b !important;
	border-color: var(--afg-heading);
	transform: translateY(-2px);
}

/* --- Mobil --- */
@media (max-width: 991.98px) {
	body.afg-site .logo img {
		height: 54px !important;
		min-height: 52px !important;
		max-width: min(220px, calc(100vw - 5.5rem)) !important;
	}

	body.afg-site .nav-container {
		flex-wrap: nowrap;
		height: auto !important;
		min-height: var(--afg-header-h);
		padding-top: 0.65rem !important;
		padding-bottom: 0.65rem !important;
	}

	body.afg-site .nav-container .checkbox {
		right: 0.5rem !important;
		margin-top: -24px !important;
	}

	body.afg-site .nav-container .hamburger-lines {
		margin-left: auto;
		margin-right: 0.75rem;
	}

	body.afg-site .logo {
		max-width: calc(100% - 3.5rem) !important;
		flex: 1 1 0;
		min-width: 0;
	}

	body.afg-site .navbar .menu-items {
		position: fixed !important;
		top: var(--afg-header-h);
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: stretch !important;
		gap: 0;
		padding: 1.25rem 1.25rem 2rem !important;
		background: rgba(10, 10, 11, 0.97) !important;
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		border-top: 1px solid var(--afg-border);
		transform: translateX(100%) !important;
		transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1) !important;
		z-index: 999;
		overflow-y: auto;
		text-align: left !important;
		max-width: none !important;
		width: 100% !important;
		height: calc(100vh - var(--afg-header-h)) !important;
		box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
	}

	body.afg-site .nav-container input[type="checkbox"]:checked ~ .menu-items {
		transform: translateX(0) !important;
	}

	body.afg-site .navbar .menu-items li {
		font-size: 0.95rem !important;
		border-bottom: 1px solid var(--afg-border);
	}

	body.afg-site .navbar .nav-container .menu-items a {
		display: block;
		padding: 1rem 0.35rem !important;
		font-size: 0.8125rem !important;
		letter-spacing: 0.12em;
		color: var(--afg-text) !important;
	}

	body.afg-site .sliders .owl-carousel .item > img {
		height: 100vh !important;
	}
}

@media (min-width: 992px) {
	/* Menü solda, logo sağda (ok / vurgu sağdaki markaya) */
	body.afg-site .nav-container {
		flex-direction: row-reverse;
		gap: clamp(0.75rem, 2vw, 1.5rem);
	}

	body.afg-site .navbar .menu-items {
		margin-left: 0 !important;
		margin-right: 0 !important;
		justify-content: flex-start !important;
		text-align: left !important;
	}

	body.afg-site .logo {
		flex: 0 0 auto;
	}

	body.afg-site .logo img {
		height: clamp(60px, 5.8vw, 80px);
		max-width: min(380px, 44vw);
		min-height: 56px;
	}

	body.afg-site .nav-container .hamburger-lines {
		display: none !important;
	}

	body.afg-site .nav-container .checkbox {
		display: none !important;
	}
}

/* Eski style.css’den gelen yardımcı sınıflar (iç sayfalar) */
body.afg-site .pt-115 {
	padding-top: 4.5rem !important;
}

body.afg-site .pb-115 {
	padding-bottom: 4.5rem !important;
}

body.afg-site .project-main {
	position: relative;
}

body.afg-site .portfolio-details {
	padding-bottom: 3rem;
}
