/* Parallax Header */
.page-title-layout {
	position: relative;
	overflow: hidden;
	height: 450px;
}

.parallax-container {
	position: relative;
	background: #384857; /* Fallback color */
	background-image: url("../../assets/images/static/iletisim_title.jpg");
	background-size: cover;
	background-position: center;
	/* background-attachment: fixed; */
	height: 100%;
	display: flex;
	align-items: center;
	padding-top: 150px;
}

.parallax-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}

.parallax-container .parallax-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.page-title-content {
	position: relative;
	z-index: 2;
}

.page-title-content h1 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.page-title-content p {
	font-size: 18px;
	line-height: 1.6;
	opacity: 0.9;
}

.page-title-content .btn {
	padding: 12px 30px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.page-title-content .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Page Title */
.page-title {
	background: #f8f9fa;
	padding: 60px 0;
	text-align: center;
}

.page-title .title {
	font-size: 42px;
	color: #333;
	margin-bottom: 10px;
	font-weight: 600;
}

.breadcrumbs ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.breadcrumbs ul li {
	color: #666;
	font-size: 16px;
}

.breadcrumbs ul li:not(:last-child):after {
	content: "/";
	margin: 0 10px;
	color: #999;
}

.breadcrumbs ul li a {
	color: #333;
	text-decoration: none;
}

/* About Content */
.about-content {
	padding: 80px 0;
}

/* Tab Buttons */
.tab-buttons {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	border-bottom: 1px solid #e9ecef;
}

.tab-btn {
	background: none;
	border: none;
	padding: 15px 30px;
	font-size: 16px;
	color: #666;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.tab-btn:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: transparent;
	transition: all 0.3s ease;
}

.tab-btn.active {
	color: #333;
}

.tab-btn.active:after {
	background: #384857;
}

/* Tab Content */
.tab-content {
	display: none;
	padding: 40px;
	background: #fff;
}

.tab-content.active {
	display: block;
}

.tab-content h3 {
	font-size: 24px;
	color: #333;
	margin-bottom: 10px;
}

.tab-content .subtitle {
	color: #666;
	font-size: 16px;
	margin-bottom: 30px;
}

.tab-content .content p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* Service Grid */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.service-item {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.service-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
	font-size: 40px;
	color: #384857;
	margin-bottom: 20px;
}

.service-item h4 {
	font-size: 18px;
	color: #333;
	margin-bottom: 15px;
	font-weight: 600;
}

.service-item p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-title-content h1 {
		font-size: 36px;
	}

	.page-title-content p {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.tab-buttons {
		flex-wrap: wrap;
	}

	.tab-btn {
		padding: 10px 20px;
		font-size: 14px;
	}

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

	.page-title .title {
		font-size: 32px;
	}

	.parallax-container {
		background-attachment: scroll; /* Mobile devices için parallax'ı devre dışı bırak */
	}
}
