﻿/* =========================================
           2. İLETİŞİM ÖZEL CSS
           ========================================= */

/* Sayfa Başlığı */
.page-header {
	background-image: linear-gradient(rgba(15, 43, 70, 0.9), rgba(15, 43, 70, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070');
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	color: white;
	text-align: center;
	margin-bottom: 60px;
}

	.page-header h1 {
		font-size: 2.8rem;
		font-weight: 800;
		margin-bottom: 10px;
	}

.breadcrumb {
	justify-content: center;
	margin-bottom: 0;
	font-size: 0.9rem;
	opacity: 0.8;
}

	.breadcrumb a {
		color: var(--accent-orange);
		font-weight: 600;
		text-decoration: none;
	}

	.breadcrumb span {
		margin: 0 10px;
		color: white;
	}

/* İletişim Kutuları (Sol Taraf) */
.contact-info-card {
	background: white;
	border-radius: var(--card-radius);
	padding: 40px 30px;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	border: 1px solid #e5e7eb;
}

.info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

	.info-item:last-child {
		margin-bottom: 0;
	}

.info-icon {
	width: 50px;
	height: 50px;
	background: #fff5eb;
	color: var(--accent-orange);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-right: 20px;
	flex-shrink: 0;
}

.info-content h5 {
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--dark-blue);
	font-size: 1.1rem;
}

.info-content p {
	color: var(--text-muted);
	margin: 0;
	font-size: 0.95rem;
}

.info-content a {
	color: var(--text-dark);
	text-decoration: none;
	transition: 0.3s;
}

	.info-content a:hover {
		color: var(--accent-orange);
	}

/* İletişim Formu (Sağ Taraf) */
.contact-form-card {
	background: white;
	border-radius: var(--card-radius);
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	border: 1px solid #e5e7eb;
}

.form-header h3 {
	font-weight: 800;
	color: var(--dark-blue);
	margin-bottom: 10px;
}

.form-header p {
	color: var(--text-muted);
	margin-bottom: 30px;
}

.form-control {
	padding: 12px 15px;
	border-radius: 8px;
	border: 1px solid #ddd;
	background-color: #f9fafb;
	font-size: 0.9rem;
}

	.form-control:focus {
		box-shadow: none;
		border-color: var(--accent-orange);
		background-color: white;
	}

.btn-send {
	background-color: var(--primary-blue);
	color: white;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	border: none;
	transition: 0.3s;
	width: 100%;
}

	.btn-send:hover {
		background-color: var(--accent-orange);
		transform: translateY(-2px);
	}

/* Harita Alanı */
.map-section {
	height: 450px;
	width: 100%;
	margin-top: 80px;
	filter: grayscale(100%); /* Haritayı gri yapar, hoverda renklenir */
	transition: 0.5s;
}

	.map-section:hover {
		filter: grayscale(0%);
	}

.map-container iframe {
	width: 100%;
	height: 450px;
	border: 0;
}
