/* Site CSS - Kullanılan CSS Class'ları */

/* Mobile Action Bar - Desktop görünümde gizli */
.mobile-action-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #ffffff;
	border-top: 1px solid #e0e0e0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 998;
	padding: 10px;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.mobile-action-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	text-decoration: none;
	color: #333333;
	font-size: 12px;
	transition: all 0.3s ease;
	flex: 1;
}

.mobile-action-btn i {
	font-size: 20px;
	margin-bottom: 4px;
}

.mobile-action-btn:hover {
	color: #e30414;
	text-decoration: none;
}

.mobile-action-call {
	color: #28a745;
}

.mobile-action-call:hover {
	color: #218838;
}

.mobile-action-appointment {
	color: #007bff;
}

.mobile-action-appointment:hover {
	color: #0056b3;
}

.mobile-action-whatsapp {
	color: #25d366;
}

.mobile-action-whatsapp:hover {
	color: #1da851;
}

/* Content Load Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.content-load-animation {
	opacity: 0;
	animation: fadeInUp 0.6s ease-out forwards;
}

.content-load-animation.delay-1 {
	animation-delay: 0.1s;
}

.content-load-animation.delay-2 {
	animation-delay: 0.2s;
}

.content-load-animation.delay-3 {
	animation-delay: 0.3s;
}

/* Appear Animation System (ContentCategory için) */
.appear-animation {
	opacity: 0;
}

.appear-animation-visible {
	opacity: 1;
}

@keyframes fadeInUpShorter {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUpShorter {
	animation-name: fadeInUpShorter;
	animation-duration: 0.6s;
	animation-fill-mode: both;
}

/* Global Styles */
html {
	position: relative;
	height: 100%;
	min-height: 100%;
}

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
}

body {
	line-height: 1;
	overflow-x: hidden;
	background-color: #fff;
	background-image: url('../background.jpg');
	font-family: 'Gotham', sans-serif !important;
}

/* Link Styles */
a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: underline;
}

/* Container */
.container {
	margin: 0px auto;
	max-width: 1360px;
}

/* Article Styles */
article {
	background-color: #F9F9F9;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}

article#home {
	position: absolute;
	top: 0;
	left: 200px !important;
	width: calc(100% - 200px);
	height: 100%;
	background-color: transparent !important;
}

/* Home Page Logo - Sağ Üst Köşe */
.home-logo {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	padding: 15px 20px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.home-logo:hover {
	transform: translateY(-2px);
}

.home-logo a {
	display: block;
	text-decoration: none;
}

.home-logo img {
	height: 100px;
	width: auto;
	display: block;
}

/* Home Koreller - Sol Üst Köşe */
.home-koreller {
	position: fixed;
	top: 30px;
	left: 240px;
	z-index: 1000;
	background-color: transparent;
	padding: 15px 30px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.home-koreller:hover {
	transform: translateY(-2px);
}

.home-koreller a {
	display: block;
	text-decoration: none;
}

.home-koreller a img {
	height: auto;
	max-height: 60px;
	width: auto;
	display: block;
}

/* Header Styles */
header {
	z-index: 1000;
	position: relative;
}

header #logo {
	position: absolute;
	top: 23px;
	left: 115px;
	height: 50px;
}

/* Inner Header */
header.inner_header {
	box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, .5);
	height: 80px;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #f5f5f5;
	z-index: 1000;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

h1.inner {
	font-size: 24px;
	font-weight: 700;
	color: #E30119;
	height: 32px;
	margin: 0;
	padding: 0;
	text-align: center;
}

#inner_logo {
	height: 60px;
}

/* Absolute Center */
.absolute-center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.absolute-center-x {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
}

/* Button Styles */
.btn {
	padding: 10px 20px;
	border-radius: 45px;
	font-size: 13px;
	line-height: 18px;
	border: 1px solid #fff;
	height: 40px;
	color: #fff;
	display: inline-block;
	margin-right: 20px;
}

.iconBtn {display:inline-block;width:18vw;height:18vw;max-width:7vw;max-height:7vw;border-radius:50%;background-color:#E10F21;padding:2px;margin-right:1vw; margin-bottom:1vw;white-space:nowrap;text-align:center}
    	.iconBtn img {max-width:100%;}
    	.iconBtn span {font-size:10px;color:#FFF;display:none;}
    	.icon_wrapper {margin-top:10px;}

/* Hamburger Menu Button */
.hamburger-menu-btn {
	display: none;
	position: fixed;
	top: 20px;
	left: 20px;
	width: 40px;
	height: 40px;
	background-color: #e30414;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	z-index: 1001;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding: 8px;
	transition: all 0.3s ease;
}

.hamburger-menu-btn span {
	display: block;
	width: 24px;
	height: 3px;
	background-color: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.hamburger-menu-btn:hover {
	background-color: #c00115;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Aside Element - Temel Stil */
aside {
	position: fixed;
	top: 0;
	left: 0;
	width: 200px !important;
	height: 100%;
	background-color: #e30414 !important;
	z-index: 1002;
	overflow-y: auto;
	overflow-x: hidden;
	transition: transform 0.3s ease;
}

aside.free {
	background-color: transparent;
}

/* Aside Menu - Dikey Metin Gösterimi */
.aside_menu_text {
	display: inline-block;
	text-orientation: mixed;
	letter-spacing: 0.15em;
	color: #fff !important;
	font-size: 1.7vh;
}

/* Aside Menu - Temel Stiller */
.aside_menu {
	border-bottom: 1px solid #880000;
	cursor: pointer;
	float: left;
	width: 100%;
	padding-top: 20px;
	font-size: 1.7vh;
	text-align: center;
	color: #fff;
	line-height: 1.1;
	background-color: rgba(0, 0, 0, 0.1);
	text-decoration: none;
	display: block;
	padding-bottom: 20px;
}

.aside_menu:hover {
	background-color: rgba(0, 0, 0, 0.3);
	text-decoration: none;
	color: #fff !important;
}

.aside_menu img {
	display: block;
	width: 20px;
	margin: 0px auto 20px;
}

/* Ana Sayfa Logo - Daha büyük gösterim */
.aside_menu:first-child img {
	width: 100px;
	height: auto;
	margin-bottom: 15px;
}

#btn_aside_project.aside_menu {
	background-color: rgba(0, 0, 0, 0.2);
}

#btn_aside_project.aside_menu:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

aside .aside_menu span {
	color: #fff !important;
}

.aside_menu.active {
	background-color: rgba(0, 0, 0, 0.5);
}

.aside_menu_with_submenu {
	padding-bottom: 0 !important;
}

/* Aside Menu - Alt Menü */
.aside_submenu {
	position: static;
	background-color: rgba(0, 0, 0, 0.3);
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 20px;
	display: block;
}

.aside_submenu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aside_submenu li:last-child {
	border-bottom: none;
}

.aside_submenu li a {
	display: block;
	padding: 10px 15px;
	color: #fff !important;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s ease;
	text-align: center;
	line-height: 1.4;
}

.aside_submenu li a:hover {
	background-color: rgba(227, 4, 20, 0.3);
	color: #fff !important;
	text-decoration: none;
}

/* Aside Contact Info */
.aside_contact_info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px 10px;
	background-color: rgba(0, 0, 0, 0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aside_contact_item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 10px;
	margin-bottom: 8px;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	transition: all 0.3s ease;
	border-radius: 4px;
}

.aside_contact_item:last-child {
	margin-bottom: 0;
}

.aside_contact_item:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
}

.aside_contact_item i {
	font-size: 14px;
	width: 16px;
	text-align: center;
}

.aside_contact_text_phone {
	font-size: 14px;
	line-height: 1.3;
	word-break: break-word;
	text-align: center;
}

.aside_contact_text {
	font-size: 12px;
	line-height: 1.3;
	word-break: break-word;
	text-align: center;
}

@media (max-width: 768px) {
	.aside_contact_info {
		padding: 10px 5px;
	}
	
	.aside_contact_item {
		font-size: 11px;
		padding: 6px 8px;
	}
	
	.aside_contact_text {
		font-size: 10px;
	}
}

/* Content Category Section */
.content-category-section {
	width: 100%;
	margin: 0;
	position: relative;
}

body:has(.content-category-section) {
	background-color: #f8f9fa !important;
}

.main:has(.content-category-section) {
	background-color: #f8f9fa;
}

/* Inner Header Styles */
.inner_header {
	box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, .5);
	height: 80px;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #f5f5f5;
	z-index: 1000;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}

.inner_header_logo {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.inner_header_logo_left {
	right: auto;
	left: 20px;
}

.inner_header_logo a {
	display: block;
	text-decoration: none;
}

.inner_header_logo img {
	height: 60px;
	width: auto;
	display: block;
}

@media (max-width: 991.98px) {
	.inner_header_logo {
		right: 10px;
	}
	
	.inner_header_logo_left {
		right: auto;
		left: 10px;
	}
	
	.inner_header_logo img {
		height: 60px;
	}
}

.inner {
	font-size: 24px;
	font-weight: 700;
	color: #E30119;
	height: 32px;
	margin: 0;
	padding: 0;
	text-align: center;
}

#inner_logo {
	height: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	opacity: 0.1;
	z-index: 1;
}

.absolute-center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

/* Content Cards */
.content-category-section .container {
	max-width: 1200px;
	padding: 40px 20px;
}

.content-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.content-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-card-image-wrapper {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.content-card-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.content-card:hover .content-card-image-wrapper img {
	transform: scale(1.05);
}

.content-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-card:hover .content-card-overlay {
	opacity: 1;
}

.content-card-overlay .btn {
	background-color: #ffffff;
	color: #333;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.content-card-overlay .btn:hover {
	background-color: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.content-card-body {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.content-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 12px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.content-card-description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 16px;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.content-card-footer {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #eee;
}

.content-card-link {
	color: #E30119;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease;
}

.content-card-link:hover {
	color: #c00115;
	text-decoration: none;
}


.content-card-link:hover::after {
	transform: translateX(4px);
}

.content-card-placeholder {
	width: 100%;
	height: 250px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 14px;
}

.section-title-category {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

/* Category Not Found Section */
.category-not-found-section {
	padding: 60px 20px;
	text-align: center;
}

.not-found-message {
	font-size: 24px;
	color: #666;
	margin-bottom: 40px;
}

.other-projects-title {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

/* Project Detail Section */
.project-detail-section {
	padding: 40px 0;
	min-height: calc(100vh - 200px);
}

.project-detail-section .container {
	margin: 0 auto;
	padding: 0 20px;
}

/* Project Gallery Carousel */
.project-gallery {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 30px;
	margin-bottom: 30px;
	height: 100%;
}

.project-gallery .carousel-inner {
	border-radius: 8px;
	overflow: hidden;
}

.project-gallery .carousel-item img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

/* Project Summary */
.project-summary {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 30px;
	height: 100%;
}

.project-summary h2 {
	font-size: 28px;
	font-weight: 700;
	color: #212529;
	margin-bottom: 20px;
}

.project-category {
	margin-bottom: 20px;
}

.project-category .badge {
	font-size: 14px;
	padding: 8px 16px;
}

.project-description {
	color: #495057;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
}

.project-description p {
	margin-bottom: 15px;
}

.project-description p:last-child {
	margin-bottom: 0;
}

/* Project Content */
.project-content {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 40px;
	margin-top: 30px;
}

.project-content h3 {
	font-size: 28px;
	font-weight: 700;
	color: #212529;
	margin-bottom: 20px;
}

.project-body {
	color: #495057;
	font-size: 16px;
	line-height: 1.8;
}

.project-body p {
	margin-bottom: 1.5rem;
}

.project-body p:last-child {
	margin-bottom: 0;
}

.project-body h1,
.project-body h2,
.project-body h3,
.project-body h4,
.project-body h5,
.project-body h6 {
	color: #212529;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.project-body ul,
.project-body ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.project-body li {
	margin-bottom: 0.5rem;
}

.project-body img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1.5rem 0;
}

.project-body a {
	color: #E30119;
	text-decoration: underline;
}

.project-body a:hover {
	color: #c00115;
}

.project-gallery .carousel-control-prev,
.project-gallery .carousel-control-next {
	width: 50px;
	height: 50px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.project-gallery .carousel-control-prev {
	left: 20px;
}

.project-gallery .carousel-control-next {
	right: 20px;
}

.project-gallery .carousel-control-prev:hover,
.project-gallery .carousel-control-next:hover {
	opacity: 1;
}

.carousel-thumbnails {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 15px;
	flex-wrap: wrap;
}

.carousel-thumbnails button {
	border: 2px solid transparent;
	padding: 0;
	background: none;
	cursor: pointer;
	border-radius: 6px;
	overflow: hidden;
	transition: border-color 0.3s ease;
	width: 80px;
	height: 80px;
}

.carousel-thumbnails button.active {
	border-color: #E30119;
}

.carousel-thumbnails button img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-indicators {
	bottom: -50px;
}

.carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
	border: none;
	margin: 0 5px;
	transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
	background-color: #E30119;
}

/* Project Map */
#projectMap {
	width: 100%;
	height: 400px;
	border-radius: 12px;
	overflow: hidden;
	margin-top: 30px;
}

/* Main Background */
.main {
	margin-left: 200px;
	background-image: url('../background.jpg');
	background-repeat: repeat;
	background-size: auto;
	background-position: top left;
}

/* Main Contact Form Section */
.main-contact-form-section {
	padding: 60px 0;
}

.main-contact-form-section .card {
	border: none;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.main-contact-form-section .form-floating > label {
	padding: 0.75rem 0.75rem;
}

.main-contact-form-section .form-control {
	border: 1px solid #dee2e6;
	padding: 0.75rem;
	transition: all 0.3s ease;
}

.main-contact-form-section .form-control:focus {
	border-color: #E30119;
	box-shadow: 0 0 0 0.2rem rgba(227, 1, 25, 0.25);
}

.main-contact-form-section .btn-primary {
	background-color: #E30119;
	border-color: #E30119;
	padding: 12px 40px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.main-contact-form-section .btn-primary:hover {
	background-color: #c00115;
	border-color: #c00115;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(227, 1, 25, 0.3);
}

.main-contact-form-section .btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Telefon alanı için özel validasyon kontrolü - boşsa yeşil border olmasın */
/* Bootstrap'in .was-validated .form-control:valid stilini override et - daha yüksek specificity */
.main-contact-form-section .was-validated #contact-phone.form-control:valid:not(.is-invalid):not(.force-valid),
.main-contact-form-section .was-validated #contact-phone.form-control.is-valid:not(.force-valid),
.was-validated #contact-phone.form-control:valid:not(.is-invalid):not(.force-valid),
.was-validated #contact-phone.form-control.is-valid:not(.force-valid) {
	border-color: #dee2e6 !important;
	background-image: none !important;
	padding-right: 0.75rem !important;
}

/* Telefon alanı boşsa veya is-valid sınıfı yoksa yeşil border olmasın */
.main-contact-form-section .was-validated #contact-phone.form-control:not(.is-valid):not(.is-invalid),
.was-validated #contact-phone.form-control:not(.is-valid):not(.is-invalid) {
	border-color: #dee2e6 !important;
	background-image: none !important;
	padding-right: 0.75rem !important;
}

/* Sadece force-valid sınıfı varsa yeşil border göster */
.main-contact-form-section .was-validated #contact-phone.form-control.force-valid.is-valid,
.was-validated #contact-phone.form-control.force-valid.is-valid {
	border-color: #198754 !important;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") !important;
	background-repeat: no-repeat !important;
	background-position: right calc(0.375em + 0.1875rem) center !important;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
	padding-right: calc(1.5em + 0.75rem) !important;
}

/* is-invalid durumunda kırmızı border ve icon göster */
.main-contact-form-section .was-validated #contact-phone.form-control.is-invalid,
.main-contact-form-section #contact-phone.form-control.is-invalid,
.was-validated #contact-phone.form-control.is-invalid,
#contact-phone.form-control.is-invalid {
	border-color: #dc3545 !important;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
	background-repeat: no-repeat !important;
	background-position: right calc(0.375em + 0.1875rem) center !important;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
	padding-right: calc(1.5em + 0.75rem) !important;
}

/* Slider Title */
.slider_title {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Home Slider Styles */
.absolute-center-y {
	position: absolute;
	top: 50% !important;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

#home_slider {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.home_slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	transition: opacity 1s ease-in-out;
	transform: scale(1.05);
	transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.home_slide.active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.home_slide:not(.active) {
	z-index: 0;
}

/* Slider Background */
.home_slide .bg {
	position: absolute;
	top: -20px;
	left: 0;
	width: calc(100% + 40px);
	height: calc(100% + 40px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

/* Slider Loading */
.slider_loading {
	position: absolute;
	z-index: 20;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background-color: rgba(0, 0, 0, 0.3);
}

.home_slide .slider_loading .slider_pane {
	position: absolute;
	left: 0;
	top: 0;
	height: 4px;
	background-color: #fff;
	width: 0;
	transition: width 12s linear;
}

.home_slide.active .slider_loading .slider_pane {
	width: 100%;
	transition: width 12s linear;
}

/* Slider Text */
.slider_text {
	left: 100px;
	z-index: 20;
	position: absolute;
	top: 60% !important;
	transform: translateY(-50%) translateX(-30px);
	-moz-transform: translateY(-50%) translateX(-30px);
	-webkit-transform: translateY(-50%) translateX(-30px);
	background-color: rgba(31, 22, 22, 0.322);
	padding: 30px 40px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 0.3s;
}

.home_slide.active .slider_text {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
	-moz-transform: translateY(-50%) translateX(0);
	-webkit-transform: translateY(-50%) translateX(0);
}

.slider_name {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider_name img {
	height: 60px;
	vertical-align: middle;
	margin-left: 15px;
}

.slider_subtitle {
	font-size: 20px;
	line-height: 20px;
	color: #fff;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	padding-right: 40px;
}

.slider_subtitle span {
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #fff;
	vertical-align: middle;
	margin-right: 15px;
}

.btn_detail {
	padding: 12px 30px;
	border-radius: 45px;
	font-size: 14px;
	line-height: 18px;
	border: 1px solid #fff;
	height: auto;
	color: #fff;
	display: inline-block;
	margin-right: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn_detail:hover {
	background-color: rgba(255, 255, 255, .2);
	color: #fff;
	text-decoration: none;
}

.btn_detail img {
	height: 5px;
	margin-right: 18px;
	vertical-align: middle;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
	/* Hamburger Menu */
	.hamburger-menu-btn {
		display: flex;
	}
	
	.mobile-menu-overlay {
		display: block;
	}
	
	/* Aside Menu - Mobil Görünüm */
	aside {
		transform: translateX(-100%);
	}
	
	aside.mobile-open {
		transform: translateX(0);
	}
	
	/* Main Content - Mobil Görünüm */
	.main {
		margin-left: 0 !important;
		left: 0 !important;
	}
	
	article#home {
		left: 0 !important;
		width: 100% !important;
	}
	
	/* Home Logo - Mobil Görünüm */
	.home-logo {
		display: none;
	}
	
	/* Home Koreller - Mobil Görünümde Footer'da */
	.home-koreller {
		position: fixed;
		top: auto;
		left: 240px;
		right: 0;
		bottom: 0;
		width: 100%;
		text-align: center;
		border-radius: 0;
		padding: 12px 20px;
		background-color: transparent;
		z-index: 999;
	}
	
	.home-koreller a img {
		max-height: 50px;
	}
	
	/* Mobil görünümde footer için article padding */
	article#home {
		padding-bottom: 60px;
	}
	
	/* Slider Text - Mobil Görünüm */
	.slider_text {
		left: 50% !important;
		transform: translate(-50%, -50%) translateY(-20px);
		-moz-transform: translate(-50%, -50%) translateY(-20px);
		-webkit-transform: translate(-50%, -50%) translateY(-20px);
		padding-left: 20px;
		padding-right: 20px;
		text-align: center;
		width: 100%;
		max-width: 100%;
		opacity: 0;
		transition: opacity 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 0.3s;
	}
	
	.home_slide.active .slider_text {
		opacity: 1;
		transform: translate(-50%, -50%) translateY(0);
		-moz-transform: translate(-50%, -50%) translateY(0);
		-webkit-transform: translate(-50%, -50%) translateY(0);
	}
	
	body.menu-open {
		overflow: hidden;
	}
	
	/* Mobile Action Bar - Mobil görünümde görünür */
	.mobile-action-bar {
		display: flex;
	}
	
	/* Mobil görünümde footer için body padding */
	body {
		padding-bottom: 70px;
	}
}

@media (max-width: 767.98px) {
	.slider_text {
		left: 50% !important;
		transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		padding-left: 20px;
		padding-right: 20px;
		text-align: center;
		width: 100%;
		max-width: 100%;
	}
	
	.slider_subtitle {
		font-size: 16px;
		line-height: 16px;
		padding-right: 20px;
	}
	
	.slider_subtitle span {
		width: 20px;
	}
	
	.slider_name {
		margin-bottom: 12px;
	}
	
	.slider_text .btn {
		width: 80%;
		margin-bottom: 10px;
	}
	
	/* Header Responsive */
	header #logo {
		left: 60px;
	}
	
	h1.inner {
		padding-left: 20px;
		font-size: 20px;
	}
	
	/* Project Detail Section Responsive */
	.project-detail-section {
		padding: 20px 0;
	}
	
	.project-detail-section .container {
		padding: 0 15px;
	}
	
	.project-gallery {
		padding: 20px;
	}
	
	.project-gallery .carousel-item img {
		height: 300px;
	}
	
	.carousel-thumbnails button {
		width: 60px;
		height: 60px;
	}
	
	.project-summary {
		padding: 20px;
	}
	
	.project-summary h2 {
		font-size: 24px;
	}
	
	.project-content {
		padding: 20px;
	}
	
	.project-content h3 {
		font-size: 22px;
	}
	
	/* Content Cards Responsive */
	.content-card-image-wrapper {
		height: 200px;
	}
	
	.content-card-title {
		font-size: 18px;
	}
	
	.content-card-description {
		font-size: 13px;
	}
	
	/* Aside Menu Responsive */
	.aside_contact_item {
		font-size: 1.3vh;
	}
	
	.aside_contact_text {
		font-size: 1.2vh;
	}
	
	/* Project Gallery Responsive */
	.project-gallery .carousel-item img {
		height: 300px;
	}
	
	.carousel-thumbnails button {
		width: 60px;
		height: 60px;
	}
	
	#projectMap {
		height: 300px;
	}
}

/* Site Responsive Styles */
@media all and (min-width: 1025px) and (max-width: 1365px) {
	.slider_text {
		left: 110px;
	}
	
	header #logo {
		left: 110px;
	}
}

@media all and (max-width: 1024px) {
	.slider_text {
		left: 50% !important;
		transform: translate(-50%, -50%) translateY(-20px);
		-moz-transform: translate(-50%, -50%) translateY(-20px);
		-webkit-transform: translate(-50%, -50%) translateY(-20px);
		padding-left: 20px;
		padding-right: 20px;
		text-align: center;
		width: 100%;
		max-width: 100%;
		opacity: 0;
		transition: opacity 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 0.3s;
	}
	
	.home_slide.active .slider_text {
		opacity: 1;
		transform: translate(-50%, -50%) translateY(0);
		-moz-transform: translate(-50%, -50%) translateY(0);
		-webkit-transform: translate(-50%, -50%) translateY(0);
	}
}

@media (max-width: 991.98px) {
	.project-detail-section {
		padding: 30px 0;
	}
	
	.project-gallery {
		padding: 25px;
	}
	
	.project-gallery .carousel-item img {
		height: 400px;
	}
	
	.project-summary {
		margin-top: 30px;
		padding: 25px;
	}
	
	.project-content {
		padding: 25px;
	}
	
	.corporate-detail-section {
		background-attachment: scroll;
	}
}

/* Contact Page Styles */
.contact-page-section {
	padding: 40px 0;
}

.contact-info-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-info-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-info-content h5 {
	color: #212529;
	font-size: 1rem;
	font-weight: 600;
}

.contact-info-content a {
	color: #0d6efd;
	transition: color 0.3s ease;
}

.contact-info-content a:hover {
	color: #0a58ca;
}

.contact-social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
	color: white;
}

.contact-map-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
	.contact-info-card,
	.contact-map-card {
		margin-bottom: 2rem;
	}
}


.corporate-detail-section .card-body {
	background-image: url('/companybackground.png');
	background-size: auto;
	background-position: bottom center;
	background-repeat: no-repeat;
	position: relative;
	padding-bottom: 200px;
}

.corporate-detail-section .card-body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 0;
	border-radius: 0.5rem;
}

.corporate-detail-section .card-body > * {
	position: relative;
	z-index: 1;
}

