/* ============================================================
   TURAP style.css v2.0
   ============================================================ */

/* ============================================================
   1. CSS
   ============================================================ */
@media (min-width: 992px) {
	:root {
		--slide-height: 100vh;
	}
}

@media (max-width: 991px) {
	:root {
		--slide-height: 500px;
	}
}

:root {
	/* TURAP Marka */
	--color-heading: #122152;
	--color-text: #2a2a2a;
	--color-primary: #c09645;
	--color-primary-dark: #a07830;
	--color-btn-text: #603815;
	--color-footer-bg: #423024;
	--color-uretim-bg: #fff7ea;
	--color-tab-text: #000000;
	--color-tab-hover-bg: #c09645;
	--color-tab-grad-start: #fff7ea;
	--color-tab-grad-end: #ffffff;
	--color-1: #2a2a2a;
	--color-2: #858585;
	--color-3: #5b3f2c;
	--color-4: #a07830;
	--color-5: #c09645;

	/* Tipografi */
	--font-base: 'Inter', sans-serif;
	--transition-base: all 0.3s ease;
	--transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	/* Section padding */
	--section-padding-y: 100px;
	--section-padding-y-sm: 60px;

	/* Slider (eski sistemden korundu) */
	--container: 1140px;
}

/* ============================================================
   2. TEMEL RESET
   ============================================================ */
html {
	overflow-y: scroll;
	-ms-overflow-style: scrollbar;
}

html,
body {
	height: 100%;
	position: relative;
	-webkit-font-smoothing: subpixel-antialiased;
}

body {
	color: var(--color-text);
	font-size: 18px;
	font-family: var(--font-base);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	font-weight: 300;
	background: #fff;
}

* {
	outline: 0;
}

::selection,
::-moz-selection,
::-webkit-selection {
	color: #fff;
	background: var(--color-heading);
}

iframe {
	border: none;
}

a,
b,
div,
ul,
li {
	-webkit-tap-highlight-color: transparent;
	-moz-outline: none;
}

a:focus:not(.focus-visible),
a:active {
	outline: none;
}

a {
	color: var(--color-heading);
	transition: var(--transition-base);
	text-decoration: none !important;
	cursor: pointer;
}

a:hover,
a:focus {
	text-decoration: none;
	color: var(--color-primary);
}

ul {
	list-style: none outside;
	padding: 0;
}

img[data-sizes="auto"] {
	display: block;
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-base);
	color: var(--color-heading);
	font-weight: 700;
	line-height: 1.25;
}

h2 {
	font-size: 36px;
}

h3 {
	font-weight: 700;
	font-size: 30px;
	color: var(--color-heading);
	margin-bottom: 20px;
}

.page {
	overflow: hidden;
}

/* ============================================================
   3. BUTON SİSTEMİ
   ============================================================ */
.btn,
.btn.focus,
.btn:focus,
button:active,
button:focus {
	box-shadow: none;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-base);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	padding: 14px 28px;
	border-radius: 40px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
	text-decoration: none !important;
	white-space: nowrap;
}

/* Shimmer */
.btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	pointer-events: none;
}

.btn:hover::after {
	transform: translateX(100%);
}

.btn:active {
	transform: translateY(0);
}

.btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(192, 150, 69, 0.3);
}

/* Primary */
.btn-primary,
.btn.btn-primary {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-btn-text);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: var(--color-btn-text);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(192, 150, 69, 0.35);
}

/* Outline Primary */
.btn-outline-primary,
.btn.btn-outline-primary {
	background: transparent;
	border-color: var(--color-heading);
	color: var(--color-heading);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background: var(--color-heading);
	border-color: var(--color-heading);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(91, 63, 44, 0.25);
}

/* Light */
.btn-light-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.7);
	color: #fff;
}

.btn-light-outline:hover {
	background: #fff;
	border-color: #fff;
	color: var(--color-heading);
	transform: translateY(-2px);
}


.btn.transparent {
	border-color: rgba(255, 255, 255, 0.7);
	color: #fff;
	background: transparent;
}

.btn.transparent:hover {
	color: #fff !important;
	background-color: rgba(255, 255, 255, 0.15);
	border-color: #fff;
}

.btn.main {
	font-size: 14px;
	color: var(--color-heading);
	padding: 2px 20px;
	line-height: 40px;
	border-color: var(--color-2);
	background-color: #fff;
	border-radius: 40px;
	display: inline-flex;
	align-items: center;
}

.btn.main img {
	margin-left: 20px;
}

.btn.main:hover {
	background-color: var(--color-2);
	border-color: var(--color-2);
	color: #fff;
}

/* Ok ikonu */
.btn-arrow__icon {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	flex-shrink: 0;
	transition: transform 0.3s ease;
	margin-left: 8px;
	vertical-align: middle;
}

.btn:hover .btn-arrow__icon {
	transform: rotate(-45deg) translateX(3px);
}

/* btn-detay (eski uyumluluk) */
.btn-detay {
	border-radius: 30px;
	font-size: 16px;
	border: 1px solid #fff;
	padding: 0 40px;
	color: #fff;
	font-weight: 500;
	background: transparent;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	z-index: 1;
	min-width: 200px;
	line-height: 40px;
	display: inline-block;
}

.btn-detay:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-detay span {
	position: relative;
	z-index: 2;
}

/* ============================================================
   4. SECTION ORTAK YARDIMCILAR
   ============================================================ */
.section-eyebrow {
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-heading);
	display: block;
	line-height: 1;
}

.section-eyebrow--light {
	color: rgba(255, 255, 255, 1);
	text-transform: unset;
	letter-spacing: 0;
}

.section-markalar-header h3,
.section-sertifikalar h2,
.section-hakkimizda h3,
.section-tarifler h3,
.section-title {
	font-size: clamp(26px, 3.5vw, 44px);
	font-weight: 200;
	color: var(--color-heading);
	margin-bottom: 20px;
	line-height: 1.2;
	font-size: 48px;
}

.section-title--light {
	color: #fff;
}

.section-desc {
	font-size: 18px;
	color: var(--color-text);
	margin: 0 auto 48px;
	line-height: 1.75;
	font-weight: 300;
}

.section-header {
	margin-bottom: 56px;
}

/* ============================================================
   5. YARDIMCI SINIFLAR
   ============================================================ */
.container-fluid.maxWidth {
	max-width: 1440px;
}

.container {
	max-width: 1140px;
}

.white-bg {
	background-color: #fff;
}

.white-bg .inner {
	padding: 60px;
	position: relative;
}

.grey-bg {
	background-color: #f6f6f6;
}

.border-white {
	border: 1px solid #fff;
}

.rotate {
	transform: rotate(270deg);
	transform-origin: 0 0;
}

.heading-title {
	font-weight: 400;
	font-size: 30px;
	color: var(--color-2);
	position: relative;
	padding-bottom: 0;
	margin-bottom: 15px;
}

.heading-title span:before {
	content: "";
	display: block;
	width: 100px;
	height: 1px;
	background: var(--color-2);
	position: absolute;
	left: 0;
	top: 50%;
}

.heading-title span {
	display: block;
	position: relative;
	padding-left: 120px;
	color: var(--color-3);
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 5px;
}

.wow {
	animation-fill-mode: backwards;
	visibility: hidden;
}

/* Dropdown Bootstrap uyumu */
.dropdown-item.active,
.dropdown-item:active {
	color: var(--color-2);
	text-decoration: none;
	background-color: unset;
}

/* ============================================================
   6. HEADER
   ============================================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.transparent {
	background: transparent;
}

.site-header.stick-fixed {
	background: #fff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
	display: flex;
	/* align-items: center; */
	justify-content: space-between;
	padding: 20px 0;
	transition: padding 0.4s ease;
}

.site-header.stick-fixed .header-inner {
	padding: 12px 0;
}

/* Logo */
.header-logo {
	display: block;
	flex-shrink: 0;
}

.site-header.stick-fixed .header-logo {}

.header-logo img {
	width: auto;
	display: block;
	transition: var(--transition-base);
}

.site-header.stick-fixed .header-logo img {}

.site-header.stick-fixed .header-nav,
.site-header.stick-fixed .header-lang {
	padding-top: 5px;
}

.logo-dark {
	display: none;
}

.logo-light {
	display: block;
}

.site-header.stick-fixed .logo-light {
	display: none;
}

.site-header.stick-fixed .logo-dark {
	display: block;
}

/* Desktop Nav */
.header-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.nav-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: block;
	padding: 8px 16px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	transition: var(--transition-base);
	border-radius: 6px;
	position: relative;
	white-space: nowrap;
	text-decoration: none !important;
}

.site-header.transparent .nav-link {
	color: #fff;
}

.site-header.stick-fixed .nav-link {
	color: var(--color-btn-text);
}

.site-mobile-menu a.nav-link {
	color: #fff !important;
}

.site-mobile-menu a.nav-link:hover {
	color: var(--color-primary) !important;
}

.nav-link:hover,
.nav-link.active {
	color: var(--color-primary) !important;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: -9px;
	right: 0;
	height: 1px;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	transform: scaleX(1);
}

/* Dropdown ok */
.nav-link--dropdown {
	display: flex;
	align-items: center;
	gap: 6px;
}

.dropdown-arrow {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow {
	transform: rotate(225deg) translateY(-2px);
}

/* Dropdown Panel */
.nav-dropdown {
	position: absolute;
	/* top: calc(100% + 8px); */
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	min-width: 220px;
	padding: 0;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	z-index: 9999;
	pointer-events: none;
	overflow: hidden;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.nav-dropdown li a {
	display: block;
	padding: 11px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	transition: var(--transition-base);
	border-left: 3px solid transparent;
}

.nav-dropdown li a:hover {
	color: var(--color-primary);
	background: var(--color-uretim-bg);
	border-left-color: var(--color-primary);
	padding-left: 24px;
}

.header-lang {
	position: relative;
	flex-shrink: 0;
}

.lang-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	font-family: var(--font-base);
	font-size: 14px;
	font-weight: 600;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition-base);
}

.site-header.stick-fixed .lang-toggle {
	border-color: rgba(91, 63, 44, 0.4);
	color: var(--color-heading);
}

.lang-toggle:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.lang-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	min-width: 130px;
	padding: 6px 0;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	z-index: 9999;
}

.header-lang:hover .lang-dropdown,
.header-lang:focus-within .lang-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-dropdown li a {
	display: block;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-text);
	transition: var(--transition-base);
}

.lang-dropdown li a:hover,
.lang-dropdown li a[aria-selected="true"] {
	color: var(--color-primary);
	background: var(--color-uretim-bg);
}

/* Hamburger */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 4px;
	border-radius: 6px;
	flex-shrink: 0;
}

.mobile-menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: var(--transition-smooth);
}

.site-header.stick-fixed .mobile-menu-toggle span {
	background: var(--color-heading);
}

body.offcanvas-menu .mobile-menu-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.offcanvas-menu .mobile-menu-toggle span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

body.offcanvas-menu .mobile-menu-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobil Menü (Premium) */
.site-mobile-menu {
	width: 100%;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 20000;
	background: #20120b;
	/* Brand dark bronze */
	height: 100vh;
	transform: translateX(110%);
	box-shadow: -15px 0 45px rgba(0, 0, 0, 0.4);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
}

.offcanvas-menu .site-mobile-menu {
	transform: translateX(0);
}

/* Custom Thin Scrollbar for Drawer */
.site-mobile-menu::-webkit-scrollbar {
	width: 4px;
}

.site-mobile-menu::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}

.site-mobile-menu::-webkit-scrollbar-thumb {
	background: rgba(192, 150, 69, 0.3);
	border-radius: 2px;
}

.site-mobile-menu::-webkit-scrollbar-thumb:hover {
	background: rgba(192, 150, 69, 0.5);
}

body.offcanvas-menu::before {
	content: '';
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999;
	backdrop-filter: blur(4px);
	animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.site-mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-mobile-menu-header .header-logo img {
	height: 50px;
	/* filter: brightness(0) invert(1); */
}

.mobile-menu-close {
	background: rgba(255, 255, 255, 0.05);
	border: none;
	color: #ebdcd0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.mobile-menu-close:hover {
	background: var(--color-primary);
	color: #fff;
	transform: rotate(90deg);
}

.site-mobile-menu-body {
	flex: 1;
	padding: 24px 28px;
	overflow-y: auto;
}

.site-nav-wrap {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav-wrap>li {
	position: relative;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-nav-wrap>li:last-child {
	border-bottom: none;
}

/* Hide desktop dropdown indicators inside the menu container */
.site-mobile-menu .dropdown-arrow {
	display: none !important;
}

.site-nav-wrap a {
	padding: 14px 0;
	display: block;
	position: relative;
	color: #ebdcd0;
	font-family: var(--font-base);
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none !important;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-nav-wrap a:hover,
.site-nav-wrap li.active>a {
	color: var(--color-primary);
	transform: translateX(8px);
}

.arrow-collapse {
	position: absolute !important;
	right: 0;
	top: 50%;
	transform: translateY(-50%) !important;
	z-index: 22;
	width: 36px;
	height: 36px;
	cursor: pointer;
	border-radius: 50%;
	background: rgba(192, 150, 69, 0.1);
	color: #c09645 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	transition: all 0.3s ease;
}

.arrow-collapse:hover {
	background: #c09645;
	color: #fff !important;
}

.arrow-collapse:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f107";
	transition: transform 0.3s ease;
	font-size: 16px;
}

.arrow-collapse:not(.collapsed):before {
	transform: rotate(-180deg);
}

.site-nav-wrap>li>ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav-wrap>li>ul.collapse.show,
.site-nav-wrap>li>ul.collapsing {
	background: rgba(0, 0, 0, 0.15);
	margin-left: -28px;
	margin-right: -28px;
	padding: 8px 28px;
	border-radius: 0;
}

.site-nav-wrap>li>ul>li {
	display: block;
	border: none !important;
}

.site-nav-wrap>li>ul>li>a {
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: rgba(235, 220, 208, 0.7);
	padding: 10px 0 10px 16px;
	transition: all 0.3s ease;
}

.site-nav-wrap>li>ul>li>a:hover {
	color: var(--color-primary);
	transform: translateX(6px);
}

/* Mobile bar (eski uyumluluk) */
.mobile-bar span {
	font-size: 24px;
	border-radius: 0;
}

/* ============================================================
   7. HERO / SLIDER (Aynen korundu)
   ============================================================ */
.slide,
.slide-material,
.hero,
.slide-list {
	height: var(--slide-height);
	position: relative;
}

.slide-list {
	position: relative;
	top: 0;
	left: 0;
}

.slide-list li {
	display: none;
}

.slide-material {
	overflow: hidden;
	position: relative;
}

.slide-material img,
.slide-material video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-photo>div {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100%;
	opacity: 1;
}

.slide-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.slide-wrapper::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 300px;
	background-image: linear-gradient(to top, transparent, #1E1E1E);
	z-index: -1;
}

.slide-container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.slide-content {
	width: 100%;
	position: relative;
	z-index: 2;
	margin-top: 60px;
}

.js-slide-item[data-type="video"] .slide-content {
	display: none !important;
}

@media (max-width: 767px) {
	.slide-content {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 991px) {
	.slide-content {
		width: 80%;
		margin: 0 auto;
	}
}

.slider-slogan {
	font-family: var(--font-base);
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 12px;
	text-transform: none;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-heading {
	font-family: var(--font-base);
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	line-height: 1.25;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.slider-slogan {
		font-size: 18px;
	}

	.slider-heading {
		font-size: 32px;
	}
}

.slider-btn-wrap {
	margin-top: 30px;
}

.btn-slider {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	color: var(--color-btn-text) !important;
	font-family: var(--font-base);
	font-size: 16px;
	font-weight: 400;
	padding: 14px 28px;
	border-radius: 30px;
	transition: var(--transition-base);
	text-decoration: none !important;
}

.btn-slider:hover {
	background: var(--color-primary);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-slider__arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform 0.3s ease;
}

.btn-slider:hover .btn-slider__arrow {
	transform: rotate(-45deg) translateX(2px);
}

.slide-controls {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 10;
}

.slider-nav-center {
	margin: 0 auto;
}

.slide-arrows {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

.slide-arrows button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition-base);
	font-size: 22px;
}

.slide-arrows button:hover {
	background: #fff;
	color: var(--color-heading);
	border-color: #fff;
}

.slider-social-links {
	display: flex;
	gap: 16px;
	align-items: center;
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 20;
}

.slider-social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #ffffff;
	color: #000000;
	font-size: 15px;
	transition: var(--transition-base);
	mix-blend-mode: screen;
}

.slider-social-links a:hover {
	transform: translateY(-2px);
	opacity: 0.85;
}

.slide-arrows button img {
	width: 12px;
	height: 12px;
	object-fit: contain;
	transition: transform 0.2s ease;
	filter: brightness(0) invert(1);
}

.slide-arrows button:hover img {
	filter: brightness(0) saturate(100%) invert(32%) sepia(35%) saturate(366%) hue-rotate(338deg) brightness(92%) contrast(87%);
}

.slide-arrows button.prev:hover img {
	transform: translateX(-2px);
}

.slide-arrows button.next:hover img {
	transform: translateX(2px);
}

@keyframes scrollBounce {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(15px);
	}

	100% {
		transform: translateY(0);
	}
}

.hero .scroll-down {
	animation: scrollBounce 2s infinite;
}

@media (max-width: 767px) {
	.scroll-down {
		display: none;
	}
}

/* Sosyal ikonlar hero'da */
.hero {
	position: relative;
	overflow: visible;
}

.hero-social {
	position: absolute;
	left: 32px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 18px;
	pointer-events: auto;
}

.hero-social__item {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	color: #fff;
	text-decoration: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	transition: transform .18s ease, background .18s ease;
}

.hero-social__item:hover {
	transform: translateX(2px) scale(1.06);
	background: rgba(0, 0, 0, 0.34);
}

.hero-social__item i {
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 768px) {
	.hero-social {
		display: none;
	}
}

.section-hakkimizda {
	position: relative;
	padding: var(--section-padding-y) 0;
	overflow: hidden;
	min-height: 680px;
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 21px;
}

.hakkimizda-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hakkimizda-bg__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.section-hakkimizda .container {
	position: relative;
	z-index: 1;
}

.hakkimizda-content {
	margin: 0 auto;
	text-align: center;
}

.hakkimizda-content h3 {
	font-weight: 200;
	font-size: 48px;
}

.hakkimizda-content .section-eyebrow {
	font-size: 36px;
	font-weight: 700;
	color: var(--color-heading);
	margin-bottom: 0;
	text-transform: uppercase;
	line-height: 1.2;
}

.hakkimizda-content .section-title {
	font-size: 48px;
	font-weight: 300;
	color: var(--color-heading);
	margin-bottom: 24px;
	text-transform: none;
}

.hakkimizda-content .section-text p {
	font-size: 21px;
	font-weight: 300;
	color: var(--color-text);
	margin-bottom: 36px;
	line-height: 1.8;
}

.section-markalar {
	padding: var(--section-padding-y) 0;
	background: linear-gradient(180deg, var(--color-tab-grad-start) 0%, var(--color-tab-grad-end) 100%);
}

.markalar-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 48px;
}

.markalar-tab-nav {
	display: inline-flex;
	list-style: none;
	margin: 0;
	padding: 6px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 50px;
	gap: 4px;
	flex-wrap: wrap;
	justify-content: center;
}

.markalar-tab-btn {
	display: block;
	padding: 10px 28px;
	font-family: var(--font-base);
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	background: transparent;
	border: 1.5px solid rgba(0, 0, 0, 0.15);
	border-radius: 40px;
	cursor: pointer;
	transition: var(--transition-smooth);
	white-space: nowrap;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.markalar-tab-btn:hover {
	background: var(--color-tab-hover-bg);
	color: #fff;
	border-color: var(--color-tab-hover-bg);
}

.markalar-tab-btn.active {
	background: var(--color-tab-hover-bg);
	color: #fff;
	border-color: var(--color-tab-hover-bg);
	box-shadow: 0 4px 16px rgba(192, 150, 69, 0.3);
}

.markalar-tab-content .tab-pane {
	animation: tabFadeIn 0.45s ease;
}

@keyframes tabFadeIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

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

/* Marka Panel */
.marka-panel {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 48px rgba(91, 63, 44, 0.08);
}

.marka-panel .row {
	margin: 0;
}

.marka-panel .col-lg-6 {
	padding: 0;
}

.marka-panel__image {
	height: 100%;
	min-height: 480px;
	position: relative;
	overflow: hidden;
}

.marka-panel__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.marka-panel:hover .marka-panel__image img {
	transform: scale(1.04);
}

.marka-panel__content {
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: left;
	text-align: center;
}

.marka-panel__logo {
	margin-bottom: 20px;
}

.marka-panel__logo img {
	object-fit: contain;
	width: auto;
	display: block;
}

.marka-panel__title {
	font-size: 36px;
	font-weight: 500;
	color: var(--color-heading);
	margin-bottom: 16px;
}

.marka-panel__text {
	font-size: 18px;
	color: var(--color-text);
	line-height: 1.8;
	margin-bottom: 32px;
	font-weight: 300;
}

.section-uretim {
	padding: var(--section-padding-y) 0;
	background: var(--color-uretim-bg);
}

.uretim-grid {
	row-gap: 32px;
}

.uretim-box {
	background: #fff;
	border-radius: 16px;
	padding: 40px 32px;
	text-align: center;
	height: 100%;
	transition: var(--transition-smooth);
	box-shadow: 0 2px 16px rgba(91, 63, 44, 0.06);
	position: relative;
	overflow: hidden;
}

.uretim-box::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.4s ease;
}

.uretim-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(91, 63, 44, 0.14);
}

.uretim-box:hover::before {
	transform: scaleX(1);
}

.uretim-box__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uretim-box__icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.uretim-box:hover .uretim-box__icon img {
	transform: scale(1.1);
}

.uretim-box__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-heading);
	margin-bottom: 12px;
}

.uretim-box__text {
	font-size: 14px;
	color: var(--color-text);
	line-height: 1.7;
	margin: 0;
}

/* --- 8.4 Lezzetli Tarifler --- */
.section-tarifler {
	padding: var(--section-padding-y) 0;
	background: #fff;
}

.tarifler-carousel-wrap {
	position: relative;
	padding: 0 28px;
}

/* Owl nav override */
.tarifler-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-60%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	margin: 0;
}

.tarifler-carousel .owl-nav button {
	pointer-events: all;
	width: 48px !important;
	height: 48px !important;
	border-radius: 50% !important;
	background: #fff !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: var(--transition-base) !important;
	margin: 0 !important;
}

.tarifler-carousel .owl-nav button:hover {
	background: var(--color-primary) !important;
	box-shadow: 0 8px 24px rgba(192, 150, 69, 0.4) !important;
}

.tarifler-carousel .owl-nav button:hover .carousel-prev,
.tarifler-carousel .owl-nav button:hover .carousel-next {
	border-color: #fff;
}

.carousel-prev,
.carousel-next {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--color-heading);
	border-bottom: 2px solid var(--color-heading);
	transition: border-color 0.2s;
}

.carousel-prev {
	transform: rotate(135deg);
}

.carousel-next {
	transform: rotate(-45deg);
}

.tarif-card {
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	display: inline-block;
	transition: transform 0.35s cubic-bezier(.22, .8, .44, 1);
}

.tarif-card:hover {
	/* transform: translateY(-6px) scale(1.012); */
}

.tarif-card__link {
	text-decoration: none;
	display: block;
	position: relative;
}

.tarif-card__image {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 18px;
}

.tarif-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(.22, .8, .44, 1);
}

.tarif-card:hover .tarif-card__image img {
	transform: translateY(0) scale(1.1);
}

.tarif-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
	rgba(0, 0, 0, 0) 30%,
	rgba(0, 0, 0, 0.18) 55%,
	rgba(0, 0, 0, 0.72) 100%);
	border-radius: 18px;
}

.tarif-card__overlay-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 55%);
	opacity: 0;
	transition: opacity 0.35s;
	pointer-events: none;
	border-radius: 18px;
}

.tarif-card:hover .tarif-card__overlay-shine {
	opacity: 1;
}

.tarif-card__tag {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 0.5px solid rgba(255, 255, 255, 0.40);
	border-radius: 20px;
	padding: 4px 13px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.3s;
}

.tarif-card:hover .tarif-card__tag {
	background: rgba(255, 255, 255, 0.32);
}

.tarif-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tarif-card__title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: 1.25;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.tarif-card__meta {
	margin: 0;
	font-size: 18px;
	color: #fff;
	letter-spacing: 0.01em;
}

.tarif-card__arrow {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 0.5px solid rgba(255, 255, 255, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s, transform 0.3s cubic-bezier(.22, .8, .44, 1);
}

.tarif-card:hover .tarif-card__arrow {
	background: var(--color-4);
	transform: translateX(2px);
	color: #fff;
	border-color: var(--color-4);
}

.tarif-card__arrow .ti {
	font-size: 14px;
	color: #fff;
}

/* --- 8.5 Neden TURAP? --- */
.section-neden-turap {
	position: relative;
	padding: var(--section-padding-y) 0;
	overflow: hidden;
	min-height: 500px;
	display: flex;
	align-items: center;
	color: #fff;
}

.neden-turap-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.neden-turap-bg__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.neden-turap-bg__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(66, 48, 36, 0.88) 0%, rgba(91, 63, 44, 0.78) 50%, rgba(66, 48, 36, 0.65) 100%);
}

.section-neden-turap .container {
	position: relative;
	z-index: 1;
}

.neden-turap-content {
	padding: 40px 0;
}

.neden-turap-lead {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
	line-height: 1.6;
}

.neden-turap-text {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 36px;
	font-weight: 300;
}

/* ============================================================
   9. FOOTER
   ============================================================ */
.site-footer {
	background: var(--color-footer-bg);
	color: rgba(255, 255, 255, 0.85);
}

.footer-top {
	padding: 72px 0 56px;
}

.footer-col {
	margin-bottom: 40px;
}

.footer-col--brand {
	padding-right: 40px;
}

.footer-logo {
	display: block;
	margin-bottom: 28px;
}

.footer-logo img {}

.footer-social {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-footer-bg);
	font-size: 21px;
	transition: var(--transition-base);
	text-decoration: none !important;
}

.social-icon:hover {
	background: var(--color-primary);
	color: #fff;
	transform: translateY(-3px);
}

.footer-heading {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	padding-bottom: 12px;
	position: relative;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 32px;
	height: 2px;
	background: var(--color-primary);
}

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

.footer-links li {
	margin-bottom: 10px;
}

.footer-links li a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition-base);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer-links li a::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-right: 1.5px solid var(--color-primary);
	border-bottom: 1.5px solid var(--color-primary);
	transform: rotate(-45deg);
	transition: transform 0.2s ease;
}

.footer-links li a:hover {
	color: var(--color-primary);
	padding-left: 4px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-copyright {
	font-size: 16px;
	color: #23303d;
	flex: 1 1 0%;
	text-align: left;
}

.footer-legal {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px;
	flex-wrap: wrap;
	flex: 1 1 0%;
	justify-content: center;
}

.footer-legal li a {
	color: #23303d;
	transition: color 0.2s;
}

.footer-legal li a:hover {
	color: var(--color-primary);
}

.footer-agency {
	flex: 1 1 0%;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.footer-agency img {
	opacity: 0.7;
	transition: opacity 0.2s ease;
	width: auto;
	object-fit: contain;
}

.footer-agency a:hover img {
	opacity: 1;
}

/* ============================================================
   10. OWL CAROUSEL (Genel)
   ============================================================ */
.owl-theme .owl-dots .owl-dot span {
	width: 30px;
	height: 7px;
	margin: 5px 7px;
	background: var(--color-2);
	display: block;
	transition: opacity 200ms ease;
	border-radius: 30px;
	opacity: .4;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: var(--color-primary);
	opacity: 1;
}

.owl-theme .owl-nav [class*='owl-']:hover {
	background: transparent;
	color: #FFF;
	text-decoration: none;
}

.owl-theme .owl-nav [class*='owl-'] {
	background: transparent;
}

.owl-theme .owl-nav .disabled {
	opacity: 0.4;
	cursor: default;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	width: 40px;
	height: 40px;
	background: transparent;
	color: #fff;
	position: absolute;
	border-radius: 50px;
	font-size: 40px;
	line-height: 40px;
	margin: 0;
}

/* ============================================================
   11. BREADCRUMB
   ============================================================ */
.breadcrumbWrapper {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover !important;
	background-position: 50% !important;
	z-index: 0;
	height: 100%;
}

.breadcrumbWrapper::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 300px;
	background-image: linear-gradient(to top, transparent, #1E1E1E);
	z-index: -1;
}

.breadcrumbInner {
	padding-top: 11em;
	padding-bottom: 8em;
	position: relative;
	background: var(--color-heading);
	color: #fff;
	text-align: center;
}

.breadcrumbInner h2,
.breadcrumbInner h1 {
	font-size: 24px;
	font-weight: 500;
	position: relative;
	color: #fff;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.breadcrumbInner h2 {
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: unset;
	color: #fff;
	font-size: 36px;
	margin-top: 0;
}

.breadcrumbInner p {
	font-size: 18px;
	color: #fff;
	position: relative;
}

.breadcrumb {
	background-color: transparent;
	padding: 15px 0;
	display: flex;
	border-radius: 0;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 0;
	justify-content: flex-start;
	z-index: 1;
	position: relative;
	align-items: center;
	line-height: 1;
	text-transform: uppercase;
}

.breadcrumb>li,
.breadcrumb>li a,
.breadcrumb>.active,
.breadcrumb>li+li:before {
	color: #fff;
}

.breadcrumb>li+li:before {
	content: "/";
	position: relative;
	left: -8px;
}

.breadcrumbInner .slogan {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
}

/* ============================================================
   12. FORM
   ============================================================ */
.form-control {
	border: 1px solid #e7dfd5 !important;
	background-color: #ffffff !important;
	color: #5b3f2c !important;
	font-size: 14px !important;
	padding: 10px 14px !important;
	height: 44px !important;
	transition: all 0.3s ease !important;
}

textarea.form-control {
	height: auto !important;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: var(--color-primary);
	outline: 0;
	box-shadow: none;
}

textarea.form-control {
	height: auto;
}

.form-group {
	margin-bottom: 15px;
	position: relative;
}

.form-group>label {
	top: -10px;
	left: 30px;
	position: absolute;
	background-color: white;
	padding: 0 15px;
	font-size: 12px;
	color: var(--color-2);
	font-weight: 500;
	z-index: 1;
}

.page-loader {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fefefe;
	z-index: 100000;
}

.loader {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	border-left: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	animation: spinner 700ms infinite linear;
	z-index: 100001;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#cookieUsagePopIn.versiyon_8 {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 380px;
	background: rgba(255, 255, 255, .85);
	-webkit-backdrop-filter: blur(25px);
	backdrop-filter: blur(25px);
	border-radius: 28px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, .25);
	transform: translateY(80px);
	opacity: 0;
	animation: springUp .8s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

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

#cookieUsagePopIn.versiyon_8 .title {
	padding: 26px 26px 14px;
	font-size: 1.3rem;
	font-weight: 600;
	color: #111;
}

#cookieUsagePopIn.versiyon_8 p {
	padding: 0 26px 22px;
	color: #333;
}

.versiyon_8.popin a {
	color: #222;
}

.versiyon_8 .acceptAndClose {
	margin: 0 26px 26px;
	padding: 16px;
	border-radius: 20px;
	background: var(--color-primary);
	color: #fff;
	text-align: center;
	font-weight: 600;
	transition: transform .25s ease;
	cursor: pointer;
}

.versiyon_8 .acceptAndClose:active {
	transform: scale(.96);
}

.popin {
	display: none;
	background-color: var(--color-2);
	width: 450px;
	box-sizing: border-box;
	padding: 20px;
	color: #fff;
	font-size: 12px;
	line-height: 17px;
	position: fixed;
	left: 15px;
	bottom: 15px;
	z-index: 999999;
	border-radius: 5px;
}

.popin .closeBtn {
	width: 11px;
	height: 11px;
	cursor: pointer;
	display: block;
	position: absolute;
	right: 8px;
	top: 10px;
	z-index: 1;
	color: #fff;
}

.popin .title {
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	margin-bottom: 5px;
	color: #fff;
}

.popin a {
	color: #fff;
}

.popin .acceptAndClose {
	color: #fff;
	display: block;
	text-align: center;
	margin-top: 5px;
	cursor: pointer;
}

/* ============================================================
   14. BLOG / HABER
   ============================================================ */
section.blog {
	padding: 60px 0;
}

.blog-item {
	background-color: #fff;
	overflow: hidden;
	display: block;
	/* box-shadow: rgba(100,100,111,0.2) 0 7px 29px 0; */
	/* border-radius: 32px; */
}

.blog-item .content {
	padding: 20px 0;
	font-size: 18px;
	font-weight: 400;
}

.blog-item .btn {
	/* display: none; */
}

.blog-item:hover .content {
	/* color: #fff; */
	/* background: var(--color-heading); */
}

.blog-item .content .title,
.blog-item .content h2 {
	display: block;
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 50px;
	min-height: 50px;
	font-size: 24px;
	margin-bottom: 15px;
	font-weight: 800 !important;
	color: var(--color-heading);
}

/* ============================================================
   15. GENEL YARDIMCILAR (Eski CSS korundu)
   ============================================================ */
.tab-pane.fade {
	transition: all 0.2s;
	transform: translateY(1rem);
}

.tab-pane.fade.show {
	transform: translateY(0rem);
}

.modal h4 {
	color: var(--color-heading);
	font-weight: 500;
	font-size: 18px;
}

.modal-backdrop.show {
	opacity: .8;
}

.img-fluid.m-auto {
	display: block;
}

.contact-span {
	font-size: 18px;
	vertical-align: middle;
}

.contact-span p {
	line-height: 28px;
}

section.content-page {
	position: relative;
}

.iletisim-page {
	padding: 60px 0;
}

section.content-page h1,
section.content-page h2 {
	font-size: 24px;
	font-weight: 900;
	line-height: 1.6;
	color: var(--color-text);
	position: relative;
	padding-bottom: 5px;
	text-transform: uppercase;
}

section.content-page h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-heading);
}

section.content-page h4 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-heading);
}

.social ul {
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex;
}

.social ul li {
	margin-right: 0;
	border-bottom: none;
}

.social a {
	color: #000;
	width: 40px;
	height: 40px;
	line-height: 36px;
	border-radius: 20px;
	background-color: #ececec !important;
	border: 2px solid #fff;
	font-size: 20px !important;
	transition: background 400ms ease-in-out;
}

.social a:hover {
	color: #fff;
	background-color: var(--color-primary) !important;
	border-color: #fff;
}

.social .fb a {
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #3C5B9B;
}

.social .instagram a {
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #C13584;
}

.social .linkedin a {
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #027ba5;
}

.social .youtube a {
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #F03434;
}

#go_up {
	width: 40px;
	height: 40px;
	line-height: 38px;
	position: fixed;
	bottom: 105%;
	right: 30px;
	font-size: 28px;
	border-radius: 50%;
	z-index: 999;
	color: #fff;
	text-align: center;
	cursor: pointer;
	background: var(--color-primary);
	transition: 1s ease;
	border: none;
	opacity: 1;
}

#go_up.open {
	bottom: 10%;
}

.alert {
	letter-spacing: .05em;
	border-color: transparent !important;
	border-radius: 0 !important;
}

.alert-success {
	background-color: #d5ffe3 !important;
	background-image: none !important;
}

.alert-danger {
	background-color: #ffe7e4 !important;
	background-image: none !important;
}

.table td,
.table th {
	vertical-align: middle;
	border-top: 0;
}

.table thead tr {
	font-size: 16px;
	font-weight: 600;
}

.table thead th {
	border-bottom: 1px solid #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: #f3f3f3;
}

/* ============================================================
   16. RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
	:root {
		--section-padding-y: 70px;
	}

	.header-nav,
	.header-lang {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hakkimizda-bg::after {
		background: rgba(255, 247, 234, 0.88);
	}

	.hakkimizda-content {
		max-width: 100%;
	}

	.marka-panel__image {
		min-height: 300px;
	}

	.marka-panel__content {
		padding: 36px 32px;
	}
}

@media (max-width: 767px) {
	:root {
		--section-padding-y: var(--section-padding-y-sm);
	}

	.header-logo {
		max-width: 100px;
		position: unset;
	}

	.header-inner {
		align-items: center;
	}

	.site-header.stick-fixed .header-logo img {
		position: relative;
	}

	.section-title {
		font-size: 26px;
	}

	.markalar-tab-nav {
		border-radius: 16px;
	}

	.markalar-tab-btn {
		padding: 8px 16px;
		font-size: 14px;
	}

	.marka-panel__content {
		padding: 28px 24px 36px;
	}

	.marka-panel__title {
		font-size: 22px;
	}

	.marka-panel__image {
		min-height: 240px;
	}

	.tarifler-carousel-wrap {
		padding: 0;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.footer-copyright,
	.footer-legal,
	.footer-agency {
		flex: none;
		text-align: center;
		width: 100%;
		justify-content: center;
	}

	.neden-turap-lead {
		font-size: 16px;
	}

	.slide-arrows button {
		position: relative;
		margin: 0 5px;
	}

	.site-header .container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (max-width: 480px) {
	.header-logo img {
		/* height: 36px; */
	}

	.btn {
		padding: 12px 22px;
		font-size: 14px;
	}

	.section-title {
		font-size: 22px;
	}
}


/* --- Corporate Rakamlarla Turap Section --- */
.stats-section {
	background-color: #fff8f0;
	/* Soft warm cream background */
	padding: 80px 0;
}

.stats-section-title {
	font-family: var(--font-base);
	font-size: 32px;
	color: #5b3f2c;
	font-weight: 300;
	margin-bottom: 48px;
}

.stats-section-title strong {
	font-weight: 700;
}

.stats-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px 30px;
	box-shadow: 0 10px 40px rgba(91, 63, 44, 0.03);
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 48px rgba(91, 63, 44, 0.06);
}

.stats-card__count {
	font-size: 30px;
	font-weight: 800;
	color: #5b3f2c;
	line-height: 1.1;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.stats-card__title {
	font-size: 18px;
	font-weight: 700;
	color: #5b3f2c;
	margin-bottom: 20px;
	line-height: 1.3;
}

.stats-card__text {
	font-size: 14px;
	color: #555555;
	line-height: 1.6;
	margin: 0;
	font-weight: 300;
}


/* --- Corporate Certificates Section --- */
.section-sertifikalar {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
	min-height: 900px;
}

.section-sertifikalar .hakkimizda-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.section-sertifikalar .hakkimizda-bg__img {
	width: auto;
	height: auto;
	object-fit: unset;
	object-position: center bottom;
}

.section-sertifikalar .container-fluid {
	position: relative;
	z-index: 1;
}

.certificate-card {
	display: block;
	background: #ffffff;
	padding: 16px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(91, 63, 44, 0.04);
	transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.certificate-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(91, 63, 44, 0.1);
	border-color: rgba(91, 63, 44, 0.1);
}

.certificate-card__image {
	overflow: hidden;
	border-radius: 8px;
}

.certificate-card__image img {
	width: 100%;
	height: auto;
	display: block;
}


/* --- Markalar Index Page Styles --- */
.section-markalar-header {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.section-markalar-header .hakkimizda-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.section-markalar-header .hakkimizda-bg__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}

.section-markalar-header .container-fluid {
	position: relative;
	z-index: 1;
}

.section-markalar-grid {
	background-color: #fff8f0;
	/* Soft warm cream background */
	padding: 80px 0;
}

.section-markalar-grid.bg-white {
	background-color: #ffffff;
}

.marka-grid-item {
	display: block;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	box-shadow: 0 8px 30px rgba(91, 63, 44, 0.05);
	cursor: pointer;
}

.marka-grid-item .image {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.marka-grid-item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: block;
}

.marka-grid-item .image .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.78) 100%);
	transition: background 0.3s ease;
}

.marka-grid-item .content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 2;
}

.marka-grid-item .content .title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0.05em;
	transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-grid-explore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
	background: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 0.5px solid rgba(255, 255, 255, 0.45);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 30px;
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
	letter-spacing: 0.02em;
}

/* Hover States */
.marka-grid-item:hover .image img {
	transform: scale(1.06);
}

.marka-grid-item:hover .image .overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.85) 100%);
}

.marka-grid-item:hover .content .title {
	transform: translateY(-5px);
}

.marka-grid-item:hover .btn-grid-explore {
	opacity: 1;
	transform: translateY(0);
}


/* --- Corporate Product Card Styles --- */
.product-card {
	display: block;
	background: #ffffff;
	border-radius: 20px;
	padding: 40px 30px;
	border: 1.5px solid #c09645;
	/* Gold border */
	position: relative;
	overflow: hidden;
	height: 100%;
	transition: all 0.3s ease-in-out;
	text-decoration: none !important;
}

.product-card__image {
	margin-bottom: 24px;
	transition: transform 0.4s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 280px;
}

.product-card__image img {
	max-height: 100%;
	width: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card__title {
	font-size: 18px;
	font-weight: 700;
	color: #5b3f2c;
	/* Bronze/brown */
	margin: 0;
	text-align: center;
}

.product-card__hover {
	position: absolute;
	inset: 0;
	background: rgba(85, 85, 85, 0.88);
	/* Translucent premium dark grey overlay */
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 2;
	padding: 24px;
}

.product-card__hover .hover-content {
	text-align: center;
	width: 100%;
	transform: translateY(15px);
	transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card__hover .hover-title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.4;
	text-transform: none;
}

.btn-hover-explore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 28px;
	border-radius: 30px;
	border: 1.5px solid #c09645;
	/* Gold border */
	letter-spacing: 0.02em;
	transition: background 0.2s, color 0.2s;
}

.btn-hover-explore:hover {
	background: #c09645;
	color: #ffffff;
}

/* Hover States */
.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(91, 63, 44, 0.12);
	border-color: #c09645;
}

.product-card:hover .product-card__image img {
	transform: scale(1.08);
}

.product-card:hover .product-card__hover {
	opacity: 1;
}

.product-card:hover .product-card__hover .hover-content {
	transform: translateY(0);
}

/* Social fixed bar */
.social-fixed,
.social-bar,
.social-icons {
	z-index: 50 !important;
}

/* --- Product Detail Page Styles --- */
.product-tags {
	margin-top: 10px;
	margin-bottom: 50px;
}

.btn-tag-weight {
	background-color: #ffffff;
	border: 1.5px solid #e7dfd5;
	color: #5b3f2c;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 28px;
	border-radius: 30px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-tag-weight:hover,
.btn-tag-weight.active {
	background-color: #c09645;
	border-color: #c09645;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(192, 150, 69, 0.2);
}

.product-gallery-container {
	border: 1.5px solid #e7dfd5;
	border-radius: 20px;
	padding: 40px;
	background: #ffffff;
	position: relative;
	box-shadow: 0 8px 30px rgba(91, 63, 44, 0.03);
}

.product-gallery-image-wrapper {
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-gallery-image-wrapper img {
	max-height: 100%;
	width: auto !important;
	object-fit: contain;
}

.btn-carousel-custom,
.btn-carousel-custom-recipes {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid #c09645;
	background-color: transparent;
	color: #c09645;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s ease;
}

.btn-carousel-custom:hover,
.btn-carousel-custom-recipes:hover {
	background-color: #c09645;
	color: #ffffff;
}

.product-info-column {
	padding-left: 20px;
}

.product-info-column .product-eyebrow {
	text-transform: uppercase;
	font-size: 13px;
	color: #c09645;
	font-weight: 700;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 12px;
}

.product-info-column .product-title-detail {
	font-size: 34px;
	font-weight: 700;
	color: #5b3f2c;
	margin-bottom: 24px;
	line-height: 1.25;
}

.product-short-desc {
	color: #706f6c;
	font-size: 15px;
	line-height: 1.75;
}

.product-short-desc p {
	margin-bottom: 20px;
}

.product-short-desc table {
	width: 100%;
	margin-top: 30px;
	border-collapse: collapse;
}

.product-short-desc th {
	border-bottom: 2px solid #e7dfd5;
	padding: 14px 10px;
	color: #5b3f2c;
	font-weight: 700;
	text-align: left;
	font-size: 14px;
}

.product-short-desc td {
	border-bottom: 1px solid #f0eae1;
	padding: 14px 10px;
	color: #706f6c;
	font-size: 14px;
}

.btn-primary-gold {
	background-color: #c09645;
	color: #ffffff !important;
	border: 1.5px solid #c09645;
	border-radius: 30px;
	padding: 12px 30px;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none !important;
}

.btn-primary-gold:hover {
	background-color: #5b3f2c;
	border-color: #5b3f2c;
	box-shadow: 0 4px 15px rgba(91, 63, 44, 0.2);
}

.btn-outline-gold {
	background-color: transparent;
	color: #c09645 !important;
	border: 1.5px solid #c09645;
	border-radius: 30px;
	padding: 12px 30px;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none !important;
}

.btn-outline-gold:hover {
	background-color: #c09645;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(192, 150, 69, 0.2);
}

/* Tab Section Styles */
.section-product-tabs {
	background-color: #fff8f0;
	padding: 90px 0;
}

.product-nav-tabs {
	gap: 40px;
	border-bottom: none !important;
}

.product-nav-tabs .nav-link {
	background: transparent !important;
	border: none !important;
	color: #706f6c !important;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 0;
	border-radius: 0;
	border-bottom: 2px solid transparent !important;
	transition: all 0.3s ease;
}

.product-nav-tabs .nav-link::after {
	display: none !important;
	content: none !important;
}

.product-nav-tabs .nav-link:hover {
	color: #c09645 !important;
	border-bottom: 2px solid transparent !important;
}

.product-nav-tabs .nav-link.active {
	color: #c09645 !important;
	font-weight: 700;
	background: transparent !important;
	border: none !important;
	border-bottom: 2px solid #c09645 !important;
}

.product-tab-content-wrapper {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 10px 40px rgba(91, 63, 44, 0.04);
	border: 1px solid #f0eae1;
}

.tab-content-text {
	color: #706f6c;
	line-height: 1.85;
	font-size: 15px;
}

.tab-content-text p {
	margin-bottom: 20px;
}

.tab-content-text table {
	width: 100%;
	margin-top: 25px;
	border-collapse: collapse;
}

.tab-content-text th {
	border-bottom: 2px solid #e7dfd5;
	padding: 14px 10px;
	color: #5b3f2c;
	font-weight: 700;
	text-align: left;
	font-size: 14px;
}

.tab-content-text td {
	border-bottom: 1px solid #f0eae1;
	padding: 14px 10px;
	color: #706f6c;
	font-size: 14px;
}

.tab-content-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.tab-content-image img {
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(91, 63, 44, 0.05);
	height: auto;
}

.section-related-recipes {
	background-color: #ffffff;
	padding: 90px 0;
}

/* Premium Request Modal Styles */
#requestModal .modal-content input,
#requestModal .modal-content select,
#requestModal .modal-content textarea {
	border: 1px solid #e7dfd5 !important;
	background-color: #ffffff !important;
	color: #5b3f2c !important;
	font-size: 14px !important;
	padding: 10px 14px !important;
	height: 44px !important;
	transition: all 0.3s ease !important;
}

#requestModal .modal-content textarea {
	height: auto !important;
}

#requestModal .modal-content input:focus,
#requestModal .modal-content select:focus,
#requestModal .modal-content textarea:focus {
	border-color: #c09645 !important;
	box-shadow: 0 0 0 3px rgba(192, 150, 69, 0.15) !important;
	outline: none !important;
}

#requestModal .modal-product-img-wrapper {
	transition: transform 0.3s ease;
}

#requestModal .modal-product-img-wrapper:hover {
	transform: scale(1.03);
}

/* Premium Filter Navigation & Pill Buttons */
.proje-filter-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px !important;
	margin-top: 30px;
	flex-wrap: wrap;
}

.proje-filter-btn {
	background-color: #ffffff !important;
	border: 1px solid #e7dfd5 !important;
	color: #5b3f2c !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	padding: 10px 24px !important;
	border-radius: 50px !important;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
	box-shadow: 0 4px 10px rgba(91, 63, 44, 0.02) !important;
	text-transform: none !important;
}

.proje-filter-btn:hover {
	border-color: #c09645 !important;
	color: #c09645 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 15px rgba(192, 150, 69, 0.1) !important;
}

.proje-filter-btn.active {
	background-color: #c09645 !important;
	border-color: #c09645 !important;
	color: #ffffff !important;
	box-shadow: 0 6px 18px rgba(192, 150, 69, 0.25) !important;
}

/* Recipe Details Page Styles */
.ingredients-box {
	background: var(--color-footer-bg);
	padding: 30px;
	border-radius: 15px;
}

.ingredients-box h3,
.ingredients-box h4 {
	color: #ffffff !important;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 20px;
	font-size: 24px !important;
	margin-bottom: 0 !important;
}

.ingredients-box ul {
	list-style-type: none !important;
	padding-left: 0 !important;
	margin-bottom: 0 !important;
}

.ingredients-box li {
	position: relative !important;
	padding-left: 24px !important;
	margin-bottom: 14px !important;
	font-size: 15px !important;
	line-height: 1.6 !important;
	list-style: none !important;
}

.ingredients-box li::before {
	content: "•" !important;
	color: #fff !important;
	/* Gold dot */
	font-weight: bold !important;
	font-size: 24px !important;
	position: absolute !important;
	left: 0 !important;
	top: -7px !important;
}

.preparation-box h3,
.preparation-box h4 {
	color: #5b3f2c !important;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 26px !important;
}