/**
 * Custom Animations - Rotating Images on Circle Path
 */

/* Rotating Orbit Container */
.rotating-orbit-container {
	position: relative;
	width: 100%;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 60px 0;
}

/* Circle Path Border - Perfect Circle 350x350 */
.orbit-path {
	position: absolute;
	width: 350px;
	height: 350px;
	border: 2px solid rgba(133, 133, 133, 0.3);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Orbit Items (images and dots) */
.orbit-item {
	position: absolute;
	top: 50%;
	left: 50%;
	transition: transform 0.1s linear;
}

/* Image styling */
.orbit-item.image {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	background: #fff;
}

.orbit-item.image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Dot styling */
.orbit-item.dot {
	width: 12px;
	height: 12px;
	background: #858585;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Center Content (optional) */
.orbit-center {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 20px;
	display: none;
}

.orbit-center h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-3);
	margin-bottom: 10px;
}

.orbit-center p {
	font-size: 16px;
	color: var(--color-2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.rotating-orbit-container {
		height: 300px;
	}

	.orbit-path {
		width: 280px;
		height: 280px;
	}

	.orbit-item.image {
		width: 120px;
		height: 120px;
		border-width: 3px;
	}

	.orbit-item.dot {
		width: 8px;
		height: 8px;
	}
}

@media (max-width: 480px) {
	.rotating-orbit-container {
		height: 250px;
	}

	.orbit-path {
		width: 220px;
		height: 220px;
	}

	.orbit-item.image {
		width: 90px;
		height: 90px;
	}
}

/* Slayt Okları Ortaya ve Kenarlara Hizalama */
.slide-arrows {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	display: flex !important;
	justify-content: space-between !important;
	padding: 0 30px !important;
	z-index: 10 !important;
}

@media (max-width: 768px) {
	.slide-arrows {
		padding: 0 10px !important;
	}
}

/* Slider Sağ Alt İletişim Butonu */
.slider-contact-btn {
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: 50;
	display: flex;
	align-items: center;
	gap: 30px;
	background: hsl(214.81deg 87.1% 18.24% / 85%);
	color: #fff !important;
	padding: 0 24px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none !important;
	box-shadow: 0 8px 20px rgba(211, 21, 43, 0.4);
	animation: contactPulse 2.5s infinite, slideInRight 1s ease-out;
	transition: all 0.3s ease;
	line-height: 58px;
}

.slider-contact-btn:hover {
	background: #7ea7e0;
	color: #fff;
	transform: translateY(-5px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.slider-contact-btn img {
	animation: phoneRing 3s infinite ease-in-out;
}

@keyframes contactPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(6, 40, 87, 0.6);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(6, 40, 87, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(6, 40, 87, 0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

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

@keyframes phoneRing {

	0%,
	20%,
	40%,
	100% {
		transform: rotate(0deg);
	}

	10%,
	30% {
		transform: rotate(15deg);
	}

	15%,
	35% {
		transform: rotate(-15deg);
	}
}

@media (max-width: 768px) {
	.slider-contact-btn {
		bottom: 20px;
		right: 20px;
		padding: 10px 18px;
		font-size: 14px;
	}

	.slider-contact-btn span {
		display: none;
		/* Hide text on mobile, just show icon */
	}

	.slider-contact-btn {
		border-radius: 50%;
		padding: 12px;
	}
}

/* ==========================================================================
   KURUMSAL SAYFASI ÖZEL STİLLERİ (BİZ KİMİZ, YAKLAŞIMIMIZ, UZMANLIK)
   ========================================================================== */

.p-t-80 {
	padding-top: 80px;
}

.p-b-80 {
	padding-bottom: 80px;
}

/* Genel Bölüm Başlıkları */
.section-title {
	margin-bottom: 30px;
}

.section-title span.sub-title {
	display: block;
	font-size: 30px;
	font-weight: 300;
	color: var(--color-1);
	letter-spacing: 1px;
	margin-bottom: 5px;
}

h3.heading-title,
.section-title h2 {
	font-size: 48px;
	font-weight: 800;
	color: var(--color-3);
	margin: 0;
	line-height: 1.2;
}

h3.heading-title {
	font-size: 36px;
}

.dynamic-section .section-title h2 {
	font-size: 36px;
}

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

p.lead-text {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-2);
	margin-bottom: 25px;
	line-height: 1.6;
}

.content-wrapper {
	overflow: hidden;
}

/* 1. Biz Kimiz Bölümü ve Alt Sayfa Üst Kısımları (Ortak Arkaplan Deseni) */
.biz-kimiz-section,
.faaliyet-hero,
.galeri-page-section,
.blog-list-section,
.kurumsal,
.projeler-header-section,
.proje-detay-section {
	background-color: #fff;
	background-image: url("../images/content-bg.png");
	background-position: right top;
	background-repeat: no-repeat;
}

.home-page .biz-kimiz-section {
	padding: 100px 0;
	background-image: none;
	background-color: transparent;

	p.lead-text {
		font-weight: 300;
	}
}

.biz-kimiz-section p {
	color: var(--color-1);
	margin-bottom: 20px;
}

.feature-box-list ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.feature-box-list ul li {
	background-color: #111b3d;
	color: #fff;
	padding: 16px 25px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 10px 30px rgba(17, 27, 61, 0.1);
	transition: transform 0.3s ease;
}

.feature-box-list ul li:hover {
	transform: translateX(10px);
}

.feature-box-list ul li::before {
	content: "\f00c";
	font-family: "FontAwesome";
	color: #7ea7e0;
	font-size: 22px;
}

/* ==========================================================================
   DİNAMİK İÇERİK BÖLÜMLERİ (Koyu ve Açık Tema Alternatifli)
   ========================================================================== */
.dynamic-section.dark-theme {
	background-color: #111b3d;
	color: #fff;
}

.dynamic-section.light-theme {
	background-color: #fff;
}

.dynamic-section p {
	font-size: 21px;
}

.dynamic-section.dark-theme p {
	color: #fff;
}

.dynamic-section.light-theme p {
	color: var(--color-1);
}

/* Dinamik Bölümler İçin Standart UL Stilleri */
.dynamic-section ul {
	list-style: none;
	padding: 0;
	margin: 25px 0;
}

.dynamic-section ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 3px;
	font-weight: 600;
}

.dynamic-section.dark-theme ul li {
	color: #fff;
}

.dynamic-section.light-theme ul li {
	color: var(--color-1);
}

.dynamic-section ul li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 5px;
	font-size: 20px;
	line-height: 1;
}

.dynamic-section.dark-theme ul li::before {
	color: #fff;
}

.dynamic-section.light-theme ul li::before {
	color: #111;
}

/* Görsel Kapsayıcılar */
.image-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

@media (max-width: 991px) {
	.section-title h2 {
		font-size: 32px;
	}

	.p-t-80 {
		padding-top: 50px;
	}

	.p-b-80 {
		padding-bottom: 50px;
	}

	.image-wrapper {
		margin-bottom: 30px;
	}
}


.faaliyet-item {
	position: relative;
	display: block;
	width: 100%;
	height: 540px;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none !important;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faaliyet-item .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 90px);
	transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 12px 12px 0 0;
	overflow: hidden;
}

.faaliyet-item:hover .image {
	height: 100%;
	border-radius: 12px;
}

.faaliyet-item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faaliyet-item:hover .image img {
	transform: scale(1.05);
}

.faaliyet-item .image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(17, 27, 61, 0.9) 0%, rgba(17, 27, 61, 0.4) 80%, rgba(0, 0, 0, 0) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.faaliyet-item:hover .image::after {
	opacity: 1;
}

.faaliyet-item .info-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 63px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
	padding: 0 30px;
}

.faaliyet-item:hover .info-content {
	height: 100%;
}

.faaliyet-item .title {
	font-size: 24px;
	font-weight: 800;
	color: var(--color-1);
	margin: 0;
	text-transform: uppercase;
	text-align: center;
	transition: color 0.3s ease, transform 0.5s ease;
	padding-top: 30px;
}

.faaliyet-item:hover .title {
	color: #fff;
	transform: translateY(-10px);
	font-size: 24px;
	padding: 0;
}

.faaliyet-item .description {
	font-size: 19px;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
	margin-top: 10px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	max-height: 0;
	overflow: hidden;
	line-height: 1.2;
}

.faaliyet-item:hover .description {
	opacity: 1;
	transform: translateY(0);
	max-height: 150px;
}

.faaliyet-item .btn-wrap {
	margin-top: 25px;
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0.1s;
	display: flex;
	align-items: center;
	gap: 5px;
}

.faaliyet-item:hover .btn-wrap {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   NEDEN TECHO İNŞAAT? BÖLÜMÜ
   ========================================================================== */
.neden-techo-section {
	background-color: #f5f5f5;
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.neden-techo-section .image-grid-wrapper {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
}

.neden-techo-section .main-img {
	width: 100%;
	display: block;
	border-radius: 10px;
}

/* Kesişen Grid Çizgileri (Arka plan ile aynı renk) */
.neden-techo-section .grid-line {
	position: absolute;
	background-color: #f5f5f5;
	z-index: 2;
}

.neden-techo-section .grid-line.vertical {
	top: 0;
	bottom: 0;
	left: 50%;
	width: 15px;
	transform: translateX(-50%);
	z-index: 99;
}

.neden-techo-section .grid-line.horizontal {
	left: 0;
	right: 0;
	top: 50%;
	height: 15px;
	transform: translateY(-50%);
	z-index: 99;
}

/* İkon Linkleri */
.neden-techo-section .grid-item-link {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: 50%;
	height: 50%;
	z-index: 5;
	transition: background-color 0.3s ease;
}

.neden-techo-section .grid-item-link:hover {
	background-color: rgba(0, 0, 0, 0.2);
}

.neden-techo-section .grid-item-link .icon-img {
	width: 38px;
	margin-bottom: 12px;
	filter: brightness(0) invert(1);
	/* İkonları bembeyaz yapar */
}

.neden-techo-section .grid-item-link .link-text {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Sağ Üst (Video) */
.neden-techo-section .video-link {
	top: 0;
	right: 0;
}

/* Sol Alt (PDF) */
.neden-techo-section .pdf-link {
	bottom: 0;
	left: 0;
}

/* Text styles */
.neden-techo-content {
	font-size: 21px;
	font-weight: 300;
}

.sub-heading {
	font-size: 30px;
	color: var(--color-1);
	font-weight: 300;
	letter-spacing: 0px;
	margin-bottom: 10px;
}

.neden-techo-content .main-heading {
	font-size: 44px;
	font-weight: 800;
	color: var(--color-3);
	/* Koyu mavi */
	margin-bottom: 25px;
	line-height: 1.2;
}

.neden-techo-content .description-text {
	font-size: 18px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 30px;
	font-weight: 300;
}

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

.simple-bullet-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	font-size: 16px;
	color: #222;
	font-weight: 600;
}

.simple-bullet-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: #222;
	font-size: 20px;
	line-height: 1.3;
}

/* ==========================================================================
   HİZMETLERİMİZ BÖLÜMÜ
   ========================================================================== */
.hizmetler-section {
	background-color: #fafafa;
	position: relative;
	overflow: hidden;
}

.hizmetler-section .left-pane {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 80px 50px 80px 15px !important;
	background-image: url('../images/hizmetler-bg.png'); /* Arka plan deseni */
	background-position: left top;
	background-repeat: no-repeat;
}

.hizmetler-section .content-wrapper {
	max-width: 650px;
	width: 100%;
}

.hizmetler-section .heading-title {
	font-size: 36px;
	font-weight: 800;
	color: var(--color-3); /* Koyu mavi */
	margin-bottom: 20px;
}

.hizmetler-section .description-text {
	font-size: 21px;
	margin-bottom: 40px;
	font-weight: 300;
}

/* Tabs */
.hizmet-tabs .nav-link {
	display: flex;
	align-items: center;
	padding: 8px 0;
	margin-bottom: 5px;
	border-radius: 0;
	background: transparent !important;
	color: #444;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.hizmet-tabs .nav-link .number {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-3);
	border-radius: 4px;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-3);
	margin-right: 15px;
	transition: all 0.3s ease;
}

.hizmet-tabs .nav-link .title {
	font-size: 24px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.hizmet-tabs .nav-link.active .number,
.hizmet-tabs .nav-link:hover .number {
	background-color: var(--color-3);
	color: #fff;
}

.hizmet-tabs .nav-link.active .title,
.hizmet-tabs .nav-link:hover .title {
	color: var(--color-3);
}

/* Right Pane - Tab Content */
@media (min-width: 992px) {
	.hizmetler-section .right-pane {
		position: relative;
		/* Height is determined by flex stretch from the left pane */
	}

	.hizmetler-section .tab-content {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.hizmetler-section .tab-pane {
		height: 100%;
	}

	.hizmet-image-wrapper {
		position: relative;
		width: 100%;
		height: 100%;
	}
	li.has-mega-menu {
		position: static !important;
	}
}

.hizmet-image-wrapper .main-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

/* Koyu Mavi Overlay Kutu */
.hizmet-image-wrapper .info-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(17, 27, 61, 0.92); /* Koyu lacivert yarı saydam */
	padding: 40px 60px;
	display: flex;
	align-items: flex-start;
}

.hizmet-image-wrapper .info-overlay .big-number {
	font-size: 70px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	margin-top: -5px;
}

.hizmet-image-wrapper .info-overlay .info-text {
	flex: 1;
	border-left: 2px solid rgba(255, 255, 255, 0.3);
	margin-left: 30px;
	padding-left: 30px;
	color: #fff;
}

.hizmet-image-wrapper .info-overlay h4 {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.hizmet-image-wrapper .info-overlay p {
	font-size: 18px;
	color: #fff;
	margin-bottom: 25px;
	font-weight: 300;
}

/* Beyaz Kenarlıklı Buton */
.hizmet-image-wrapper .btn.outline-white {
	display: inline-block;
	padding: 4px 25px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 4px;
	transition: all 0.3s ease;
	text-decoration: none;
	background: transparent;
}

.hizmet-image-wrapper .btn.outline-white:hover {
	background-color: #fff;
	color: var(--color-3);
	border-color: #fff;
}

@media (max-width: 1200px) {
	.hizmetler-section .description-text {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.hizmet-tabs .nav-link .title {
		font-size: 20px;
	}

	.hizmet-tabs .nav-link {
		margin: 0;
	}
}

@media (max-width: 991px) {
	.hizmetler-section .right-pane {
		position: relative;
	}

	.hizmetler-section .tab-content,
	.hizmetler-section .tab-pane {
		height: auto;
	}

	.hizmet-image-wrapper {
		position: relative;
		min-height: 500px;
		height: 100%;
		width: 100%;
	}

	.hizmetler-section .left-pane {
		padding: 40px 15px !important;
		justify-content: flex-start;
	}

	.hizmetler-section .info-overlay {
		padding: 30px 20px;
		flex-direction: column;
	}

	.hizmetler-section .info-overlay .big-number {
		margin-bottom: 20px;
		font-size: 30px;
		width: 100%;
		border-bottom: 1px solid #fff;
		padding-bottom: 15px;
	}

	.hizmet-image-wrapper .info-overlay .info-text {
		padding-left: 0;
		border: 0;
		margin-left: 0;
	}
}

.referanslar-section {
	padding: 100px 0;
	background: #f5f5f5;
	overflow: hidden;
}

.referanslar-logo-section {
	max-width: 90%;
	margin: 0 auto;
	overflow: hidden;
}

/* ==========================================================================
   FOOTER REVISIONS
   ========================================================================== */
.footer-top-bar {
	background-color: var(--color-3);
	padding: 60px 0;
}

.footer-icon {
	max-width: 25px;
	filter: brightness(0) invert(1);
}

.address-text {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
}

.phone-text {
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.email-text {
	font-size: 21px;
	font-weight: 600;
}

.footer-bottom-bar {
	background-color: #fff;
	padding: 25px 0;
	font-size: 15px;
	color: var(--color-1);
	letter-spacing: 0.4px;
}

.footer-bottom-links a {
	color: var(--color-1);
	font-size: 16px;
	text-decoration: none;
	font-weight: 400;
}

.footer-bullet {
	color: var(--color-3);
	font-size: 18px;
	margin-right: 5px;
	vertical-align: middle;
}

.copyright-logo {
	max-height: 25px;
}

/* ==========================================================================
   FAALİYET / ÜRETİME GÜÇ KATAN YAPILAR SAYFASI
   ========================================================================== */

/* Hero Butonları */
.faaliyet-hero .hero-buttons button,
.faaliyet-hero .hero-buttons a {
	border-radius: 4px;
	padding: 10px 20px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
	border-radius: 10px;
	color: var(--color-1);
}

.btn-outline-light-custom {
	color: var(--color-3);
	border: 2px solid #dddddd;
	background-color: transparent;
}

.btn-outline-light-custom img {
	margin-left: 10px;
	transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
	background-color: var(--color-3);
	color: #fff !important;
}

.btn-outline-dark-custom {
	color: var(--color-3);
	border: 2px solid var(--color-3);
	background-color: transparent;
}

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

.btn-outline-dark-custom img {
	margin-left: 10px;
	transition: all 0.3s ease;
}

.btn-outline-dark-custom:hover img {
	filter: brightness(0) invert(1);
}

/* Mühendislik Süreci Grid */
.muhendislik-sureci .surec-box {
	background-color: #f5f5f5;
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	font-size: 16px;
}
.muhendislik-bg .surec-box {
	color:var(--color-1);
}
.muhendislik-sureci .surec-box:hover {
	background-color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-color: #eee;
	transform: translateY(-5px);
}

.muhendislik-sureci .icon-box {
	width: 80px;
	height: 80px;
	background-color: var(--color-3);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: all 0.3s ease;
}

.muhendislik-sureci .surec-box:hover .icon-box {
	transform: scale(1.1);
}

.muhendislik-sureci .icon-box img {
	filter: brightness(0) invert(1);
}

.muhendislik-sureci .title {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-3);
	margin-bottom: 15px;
}

.muhendislik-sureci .desc {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* SSS Accordion */
.sss-accordion .accordion-item {
	background: transparent;
}

.sss-accordion .accordion-button {
	background-color: var(--color-3);
	color: #fff;
	font-weight: 600;
	font-size: 21px;
	padding: 24px 25px;
	border-radius: 6px !important;
	box-shadow: none !important;
}

.sss-accordion .accordion-button:not(.collapsed) {
	background-color: var(--color-3);
	color: #fff;
}

.sss-accordion .accordion-button::after {
	filter: brightness(0) invert(1);
}

.sss-accordion .accordion-body {
	background-color: #fff;
	border: 0;
	border-top: 0;
	border-radius: 0 0 6px 6px;
	padding: 25px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 10px;
}

/* CTA Section */
.muhendislik-bg,
.cta-section {
	background-size: cover;
	background-position: center;
	position: relative;
}

.muhendislik-bg {
	background-image: url("../images/muhendislik-bg.jpg");
	padding: 100px 0 !important;
	color: #fff;
}

.muhendislik-bg h3.heading-title {
	color: #fff;
}

.cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(17, 27, 61, 0.85); /* var(--color-3) ile uyumlu lacivert overlay */
	z-index: 1;
}

.btn-outline-white-custom {
	color: var(--color-1);
	border: 2px solid #fff;
	background-color: #fff;
	padding: 12px 25px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.btn-outline-white-custom:hover {
	background-color: #fff;
	color: var(--color-3);
}

.btn-outline-white-custom img {
	margin-left: 15px;
	transition: all 0.3s ease;
}

/* ==========================================================================
   MEGA MENU STYLES
   ========================================================================== */
.header {
	transition: background-color 0.4s ease;
}

.header.mega-menu-active {
	background-color: var(--color-3) !important;
}

.header-logo-bg {
	position: absolute;
	top: -50px; /* Covers header padding */
	bottom: -50px;
	left: -50vw; /* Extends indefinitely to the left */
	right: 15px;
	background-color: #0d1426;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	pointer-events: none;
	display: none;
}

.header.mega-menu-active .header-logo-bg {
	opacity: 1;
}

.mega-menu-wrapper {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: calc(100vh - 100px); /* Full height taking header into account */
	min-height: 500px;
	background-color: var(--color-3);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none; /* Prevents hovering when hidden */
	transform: translateY(15px);
	transition: all 0.4s ease;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

li.has-mega-menu.active-mega .mega-menu-wrapper {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.mega-menu-left {
	background-color: #0d1426; /* Logo arkasındaki daha koyu lacivert ile uyumlu */
	height: 100%;
	overflow-y: auto;
	padding: 30px 0 !important;
}

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

.mega-nav-list li a {
	display: block;
	padding: 18px 40px;
	color: #fff;
	font-size: 21px;
	font-weight: 300;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
	transition: all 0.3s ease;
	position: relative;
	letter-spacing: 0.5px;
}

.mega-nav-list li:last-child a {
	border-bottom: none;
}

.mega-nav-list li a.active,
.mega-nav-list li a:hover {
	color: #43adff; /* Mavi hover rengi (ekran görüntüsündeki gibi) */
	background-color: rgba(255, 255, 255, 0.02);
	padding-left: 45px;
	font-weight: 700;
}

.mega-nav-list li a .arrow {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: all 0.3s ease;
}

.mega-nav-list li a .arrow img {
	max-width: 16px;
	filter: brightness(0) invert(0.6) sepia(1) saturate(3) hue-rotate(180deg); /* Mavi tona yaklaşması için */
}

.mega-nav-list li a.active .arrow,
.mega-nav-list li a:hover .arrow {
	opacity: 1;
	right: 25px;
}

.mega-menu-right {
	height: 100%;
	background-color: var(--color-3); /* #111b3d */
	position: relative;
}

.mega-content-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.mega-content-pane {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: auto;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease;
}

.mega-content-pane.active {
	opacity: 1;
	visibility: visible;
	z-index: 10;
}

.mega-image {
	width: 100%;
	max-width: 550px;
	height: 550px;
	max-height: 550px;
	margin: 30px auto;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mega-text {
	color: #fff;
}

.mega-text h3 {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 25px;
	letter-spacing: 1px;
	color: #fff;
}

.mega-text p {
	font-size: 18px;
	line-height: 1.8;
	color: #fff;
	margin-bottom: 35px;
	font-weight: 300;
}

.mega-text .btn-detayli {
	padding: 8px 25px;
	font-size: 18px;
	font-weight: 300;
	border-radius: 8px;
	text-transform: none;
	letter-spacing: 0.5px;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
	background: transparent;
}

.mega-text .btn-detayli:hover {
	background: #fff;
	color: var(--color-3);
	border-color: #fff;
}

.mega-menu-close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 24px;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s ease;
}

.mega-menu-close:hover {
	color: #fff;
	transform: rotate(90deg);
}

@media (max-width: 991px) {
	.mega-menu-wrapper {
		position: relative;
		top: 0;
		height: auto;
		min-height: 0;
		max-height: none;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
	}

	li.has-mega-menu.active-mega .mega-menu-wrapper {
		display: block;
	}

	.mega-image {
		margin: 20px;
		height: 250px;
	}

	.mega-text {
		padding: 20px;
	}

	.mega-menu-left {
		height: auto;
		max-height: 300px;
	}

	.mega-content-pane {
		position: relative;
		height: auto;
		display: none;
	}

	.mega-content-pane.active {
		display: block;
	}
	.slide {
		position: relative;
	}

}

.btn-outline-white-custom:hover img {
}

/* ==========================================================================
   TEKLİF TALEP FORMU SAYFASI
   ========================================================================== */

.teklif-section {
	position: relative;
	min-height: 100vh;
	background-image: url('../images/teklif-bg.jpg');
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	padding: 150px 0 100px;
}

.teklif-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(13, 20, 38, 0.15); /* Dark overlay matching design */
	z-index: 0;
}

.teklif-header h1 {
	letter-spacing: 1px;
}

.teklif-form-container {
	max-width: 650px;
	width: 100%;
}

.teklif-input {
	background-color: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 4px !important;
	color: #fff !important;
	padding: 5px 20px !important;
	font-size: 15px !important;
	font-weight: 300;
	box-shadow: none !important;
	transition: all 0.3s ease;
}

.teklif-input::placeholder {
	color: #fff !important;
	opacity: 1;
}

.teklif-input:focus {
	border-color: #fff !important;
	background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Custom Select styling */
select.teklif-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
	background-repeat: no-repeat !important;
	background-position: right 15px center !important;
	background-size: 16px !important;
}

select.teklif-select option {
	background-color: var(--color-3);
	color: #fff;
	padding: 10px;
}

/* Custom Checkbox */
.teklif-checkbox {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	width: 18px;
	height: 18px;
	border-radius: 3px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	outline: none;
	box-shadow: none !important;
	flex-shrink: 0;
}

.teklif-checkbox:checked {
	background-color: transparent;
	border-color: #fff;
}

.teklif-checkbox:checked::after {
	content: '\f00c';
	font-family: "FontAwesome";
	color: #fff;
	font-size: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Bootstrap Filestyle overrides */
.btn-dosya-yukle {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	color: #fff !important;
	text-decoration: underline !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	box-shadow: none !important;
}

.btn-dosya-yukle:hover {
	color: rgba(255, 255, 255, 0.8) !important;
}

.bootstrap-filestyle .badge {
	background-color: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	font-weight: normal;
	margin-left: 10px;
	padding: 5px 10px;
}

/* Submit Button */
.btn-teklif-submit {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	padding: 8px 30px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-teklif-submit:hover {
	background: #fff;
	color: var(--color-3);
	border-color: #fff;
}

.teklif-desc {
	color: #fff;
	font-size: 18px;
	margin: 0 auto;
	line-height: 1.6;
}

.teklif-form-title {
	font-size: 18px;
}

.teklif-upload-text {
	color: #fff;
	font-size: 13px;
}

.teklif-kvkk-text {
	color: #fff;
	font-size: 13px;
	line-height: 1.4;
	cursor: pointer;
}

/* ==========================================================================
   İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ========================================================================== */

.iletisim-info-box {
	background-color: rgb(36 55 80 / 90%); /* Dark blue */
	border-radius: 6px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.03);
	color: #fff;
	height: calc(100% - 80px);
}

.iletisim-info-box h5 {
	font-size: 24px;
	font-weight: 800;
}

.iletisim-info-row .info-label {
	width: 100px;
	flex-shrink: 0;
	font-weight: 300;
}

.iletisim-info-row .info-value {
	font-weight: 600;
}

.iletisim-info-row .info-value a {
	color: #fff;
	text-decoration: underline !important;
	text-underline-offset: 8px;
}

.btn-outline-map {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 24px;
	flex: 1;
}

.btn-outline-map:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

/* ==========================================================================
   PROJELER LİSTESİ ÖZEL STİLLERİ
   ========================================================================== */

.proje-filter-nav {
	margin-bottom: 20px;
}

.proje-filter-btn {
	background-color: #f5f5f5;
	color: #444;
	border-radius: 8px;
	padding: 0px 24px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	line-height: 40px;
}

.proje-filter-btn:hover, .proje-filter-btn.active {
	background-color: var(--color-3); /* Dark blue */
	color: #fff;
	box-shadow: 0 4px 10px rgba(17, 27, 61, 0.2);
}

.proje-horizontal-card {
	background-color: var(--color-3);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	min-height: 400px;
}

.proje-card-left {
	flex: 0 0 50%;
	max-width: 50%;
}

.proje-card-right {
	flex: 1;
	overflow: hidden;
}

.proje-card-right img {
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proje-horizontal-card:hover .proje-card-right img {
	transform: scale(1.08);
}

.fw-300 { font-weight: 300 !important; }

.btn-proje-detay {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	padding: 8px 24px;
}

.btn-proje-detay:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

.proje-bottom-cta {
	position: relative;
	background-image: url('../images/teklif-bg.jpg');
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	margin-top: 0;
}

@media (max-width: 991px) {
	.proje-card-left {
		flex: 1 1 100%;
		max-width: 100%;
	}
	.proje-card-right {
		min-height: 300px;
	}
}

/* ==========================================================================
   PROJE DETAY SAYFASI ÖZEL STİLLERİ
   ========================================================================== */

.proje-ozet-content p, .proje-ozet-content li {
	padding: 10px 0;
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 0;
	font-size: 18px;
	color: var(--color-1);
	font-weight: 400;
}

.proje-ozet-content p:last-child, .proje-ozet-content li:last-child {
	border-bottom: none;
}

.proje-ozet-content strong, .proje-ozet-content b {
	font-weight: 700;
	display: inline-block;
	min-width: 120px;
	color: #222;
}

.proje-aciklama-content p {
	margin-bottom: 20px;
}

.proje-galeri-carousel .owl-nav {
	position: absolute;
	top: -60px;
	right: 0;
	margin: 0 !important;
}

.proje-galeri-carousel .owl-nav button {
	background: transparent !important;
	width: 40px;
	height: 40px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.proje-galeri-carousel .owl-nav button:hover {
	opacity: 1;
}

.proje-galeri-carousel .owl-dots {
	margin-top: 30px !important;
}

/* Galeri Hover Efektleri */
.galeri-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	display: block;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.4s ease;
}

.galeri-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.galeri-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(36, 55, 80, 0.5); /* Koyu lacivert overlay */
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.galeri-item::before {
	content: '\f00e'; /* fa-search-plus */
	font-family: 'Font Awesome 5 Free', 'FontAwesome', sans-serif;
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.5);
	color: #fff;
	font-size: 36px;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 2;
}

.galeri-item:hover {
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
	transform: translateY(-8px);
}

.galeri-item:hover img {
	transform: scale(1.1);
}

.galeri-item:hover::after {
	opacity: 1;
}

.galeri-item:hover::before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.proje-galeri-carousel.owl-carousel .owl-stage-outer{
	overflow:visible;
}

/* ==========================================================================
   BLOG / BASIN SAYFASI KART STİLLERİ
   ========================================================================== */

.modern-blog-card {
	background: #fff;
	transition: all 0.4s ease;
}

.blog-image-wrapper {
	border-radius: 8px;
	overflow: hidden;
}

.blog-image-wrapper img {
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(36, 55, 80, 0.5);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.blog-overlay i {
	color: #fff;
	font-size: 32px;
	transform: scale(0.5);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-blog-card:hover .blog-image-wrapper img {
	transform: scale(1.08);
}

.modern-blog-card:hover .blog-overlay {
	opacity: 1;
}

.modern-blog-card:hover .blog-overlay i {
	opacity: 1;
	transform: scale(1);
}

.blog-title a {
	color: var(--color-3);
	font-size: 30px;
	font-weight: 700;
	transition: opacity 0.3s ease;
	display: block;
	line-height: 1.3;
}

.blog-title a:hover {
	opacity: 0.8;
}

.blog-desc {
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-1);
}

.btn-blog-detay {
	background: #fff;
	border: 1px solid #e0e0e0;
	color: var(--color-1);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 16px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-blog-detay:hover {
	background: var(--color-3);
	border-color: var(--color-3);
	color: #fff;
}

/* ==========================================================================
   GALERİ SAYFASI KART STİLLERİ
   ========================================================================== */

.modern-galeri-card {
	transition: all 0.4s ease;
}

.modern-galeri-card .image-wrapper {
	transition: all 0.4s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.modern-galeri-card .image-wrapper img {
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-galeri-card .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(36, 55, 80, 0.6);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.modern-galeri-card .overlay i {
	color: #fff;
	transform: scale(0.5);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-galeri-card:hover .image-wrapper {
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
	transform: translateY(-8px);
}

.modern-galeri-card:hover .image-wrapper img {
	transform: scale(1.08);
}

.modern-galeri-card:hover .overlay {
	opacity: 1;
}

.modern-galeri-card:hover .overlay i {
	opacity: 1;
	transform: scale(1);
}

.modern-galeri-card .card-title {
	transition: color 0.3s ease;
}

.modern-galeri-card:hover .card-title {
	color: var(--color-3) !important;
}

/* ==========================================================================
   HEADER MENÜ DESKTOP OPTİMİZASYONU (Aşağı Kaymayı Önleme)
   ========================================================================== */

/* Büyük-Orta Ekranlar (1200px - 1400px arası) */
@media (max-width: 1400px) and (min-width: 1200px) {
	.site-navbar-wrap.v2 .site-navbar .site-navigation .site-menu > li > a {
		font-size: 14px;
		margin: 0 10px;
	}
}

/* Küçük Desktop Ekranlar (992px - 1199px arası) */
@media (max-width: 1199px) and (min-width: 992px) {
	.site-navbar-wrap.v2 .site-navbar .site-navigation .site-menu > li > a {
		font-size: 13px;
		margin: 0 6px;
	}

	/* Navbar'da menüye daha fazla alan açmak için kolon genişliklerini ezebiliriz */
	.site-navbar .row > .col-lg-3 {
		width: 15%;
	}
	.site-navbar .row > .col-lg-9 {
		width: 85%;
	}
}

/* Mobil Menü Mega Menü Fix (Accordion oklarının üst üste binmesini engeller) */
.site-mobile-menu .has-mega-menu {
	position: relative;
}

/* ==========================================================================
   MOBİL MENÜ YENİDEN TASARIMI (Modern, Glassmorphism, Animasyonlu)
   ========================================================================== */

/* 1. Arkaplan ve Genel Görünüm (Glassmorphism) */
.site-mobile-menu {
	background: var(--color-3); /* Çok koyu lacivert şeffaf */
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* 2. Sayfa Kararma (Overlay) Efekti */
body::after {
	content: '';
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	z-index: 900; /* Header z-index'i genellikle 1000 olduğu için menü altında kalması için düşürüldü */
	transition: all 0.5s ease;
}
body.offcanvas-menu::after {
	opacity: 1;
	visibility: visible;
}

/* 3. Menü Header ve Kapatma Butonu */
.site-mobile-menu .site-mobile-menu-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 15px 20px !important;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
	font-size: 24px !important;
	color: rgba(255, 255, 255, 0.7) !important;
	transition: all 0.4s ease !important;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
	color: #fff !important;
	transform: rotate(90deg);
}

/* 4. Menü Elemanları Tipografi ve Çizgiler */
.site-mobile-menu .site-mobile-menu-body {
	padding: 30px 20px !important;
}
.site-mobile-menu .site-nav-wrap > li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-mobile-menu .site-nav-wrap > li:last-child {
	border-bottom: none;
}
.site-mobile-menu .site-nav-wrap > li > a {
	font-size: 18px !important;
	font-weight: 400 !important;
	padding: 15px 0 !important;
	color: rgba(255, 255, 255, 1) !important;
	transition: color 0.3s ease, padding-left 0.3s ease;
}
.site-mobile-menu .site-nav-wrap > li > a:hover {
	color: #fff !important;
	padding-left: 10px !important;
}

/* Alt Menü Elemanları */
.site-mobile-menu .site-nav-wrap > li > ul {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	margin-bottom: 15px;
	padding: 10px 0 !important;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
	font-size: 15px !important;
	color: rgba(255, 255, 255, 0.9) !important;
	padding: 10px 20px !important;
	transition: color 0.3s ease, padding-left 0.3s ease;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a:hover {
	color: var(--color-2) !important;
	padding-left: 25px !important;
}

/* 5. Şık Accordion (Açılır-Kapanır) Oku */
.site-mobile-menu .site-nav-wrap .arrow-collapse {
	background-color: transparent !important;
	color: rgba(255, 255, 255, 0.5) !important;
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 32px !important;
	height: 32px !important;
	top: 10px !important;
	transition: all 0.3s ease;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
	font-size: 16px !important;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
	background-color: var(--color-2) !important;
	color: #fff !important;
	border-color: var(--color-2);
}

/* 6. Kademeli Giriş (Staggered Slide-In) Animasyonu */
.site-mobile-menu .site-nav-wrap > li {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li {
	opacity: 1;
	transform: translateX(0);
}
/* Tek Tek Geliş Gecikmeleri (Delays) */
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(1) { transition-delay: 0.1s; }
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(2) { transition-delay: 0.15s; }
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(3) { transition-delay: 0.2s; }
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(4) { transition-delay: 0.25s; }
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(5) { transition-delay: 0.3s; }
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(6) { transition-delay: 0.35s; }
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(7) { transition-delay: 0.4s; }
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(8) { transition-delay: 0.45s; }
body.offcanvas-menu .site-mobile-menu .site-nav-wrap > li:nth-child(9) { transition-delay: 0.5s; }
