@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Poppins:wght@400;600;700;900&display=swap');
html {
	scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Poppins:wght@400;600;700;900&display=swap');
header {
	position: sticky;
	top: 0;
	z-index: 1002;
}
.hero {
	background: #fff;
	color: #c62828;
	padding: 64px 0 48px 0;
	text-align: center;
	box-shadow: 0 4px 32px #c6282820;
	border-radius: 0 0 32px 32px;
}
/* Modern kırmızı navbar */
header {
	background: linear-gradient(90deg, #c62828 0%, #e53935 100%);
	box-shadow: 0 2px 16px #c6282820;
	padding: 0.5rem 0;
	border-radius: 0 0 18px 18px;
}
.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
}
.main-nav a {
	color: #fff;
	background: transparent;
	font-weight: 600;
	font-size: 1.1rem;
	padding: 8px 22px;
	border-radius: 24px;
	transition: background 0.2s, color 0.2s;
	text-decoration: none;
	letter-spacing: 0.5px;
}
.main-nav a:hover, .main-nav a:focus {
	background: #fff;
	color: #c62828;
	box-shadow: 0 2px 8px #c6282820;
}
/* Kırmızıya boğmadan denge için ek iyileştirmeler */
.service-card span {
	color: #232323;
}
.service-card .yellow {
	color: #c62828;
	font-weight: 700;
}
.main-nav a {
	color: #c62828;
	background: transparent;
}
.main-nav a:hover, .main-nav a:focus {
	background: #ffeaea;
	color: #c62828;
}
/* Modern ve kurumsal kırmızı ana renkli güncel bloklar */
.hero {
	background: linear-gradient(90deg, #fff 0%, #ffeaea 100%);
	color: #c62828;
	padding: 64px 0 48px 0;
	text-align: center;
	box-shadow: 0 4px 32px #c6282820;
	border-radius: 0 0 32px 32px;
}
.hero h1 {
	color: #c62828;
	text-shadow: 2px 2px 8px #ffd6d6;
}
.hero h2 {
	color: #b32525;
	text-shadow: 1px 1px 6px #ffd6d6;
}
.hero p {
	color: #232323;
	text-shadow: 1px 1px 4px #ffd6d6;
}
.services {
	background: #fff5f5;
	padding: 40px 0;
	color: #c62828;
}
.services-card {
	background: #fff;
	border-radius: 32px;
	box-shadow: 0 8px 48px #c6282820, 0 2px 24px #ffd6d6;
	padding: 48px 0;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.service-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 32px #c6282820;
	padding: 32px 24px;
	margin: 0 12px;
	min-width: 260px;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
	border: 1.5px solid #ffeaea;
}
.service-card .tick {
	font-size: 2.2rem;
	color: #c62828;
	margin-bottom: 8px;
	display: block;
	text-align: center;
}
/* Logo metni modern ve sade */
.logo-text {
	font-size: 2.4rem;
	font-weight: 900;
	color: #c62828;
	letter-spacing: 2px;
	text-shadow: 1px 1px 4px #ffd60033;
	display: inline-block;
}
.logo-highlight {
	color: #ffd600;
	font-weight: 900;
	letter-spacing: 1px;
	display: inline-block;
}
@media (max-width: 600px) {
	.logo-text {
		font-size: 1.3rem;
	}
}
@media (max-width: 600px) {
	.logo-text {
		font-size: 1.2rem;
	}
	.logo-highlight {
		padding: 0 4px;
	}
}
/* Yatay scroll ve animasyon */
/* Hizmet kartları yan yana ve ortalanmış */
.horizontal-scroll {
	display: flex;
	flex-direction: row;
	gap: 18px;
	justify-content: center;
	align-items: center;
	padding-bottom: 12px;
}
.service-card {
	width: 220px;
	animation: slideIn 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(60px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@media (max-width: 900px) {
	.service-card {
		width: 180px;
	}
}
@media (max-width: 600px) {
	.horizontal-scroll {
		flex-direction: column;
		gap: 10px;
		align-items: stretch;
	}
	.service-card {
		width: 180px;
	}
}
@media (max-width: 600px) {
	.service-cards {
		flex-direction: column;
		gap: 10px;
	}
	.service-card {
		width: 98vw;
	}
}
.about-content {
	min-height: 80px;
}

/* Google Maps konum */
.location {
	background: #181818;
	color: #fff;
	padding: 40px 0;
}
.location h2 {
	color: #ffd600;
	font-size: 2rem;
	margin-bottom: 18px;
}
.map-placeholder {
	min-height: 220px;
	background: #333;
	border-radius: 12px;
	box-shadow: 0 2px 12px #0003;
}

/* Animasyon/Geçiş Efektleri alanı */
.animations {
	background: #c62828;
	color: #fff;
	padding: 32px 0;
	min-height: 60px;
}

/* Hızlı arama butonu */

/* Sosyal medya ikonları */
footer {
	background: #fff;
	color: #c62828;
	padding: 24px 0;
	text-align: center;
	border-top: 2px solid #ffeaea;
}
.social-media {
	display: flex;
	justify-content: center;
	gap: 24px;
}
.social-icon {
	width: 40px;
	height: 40px;
	display: inline-block;
	border-radius: 50%;
	background: #fff5f5;
	color: #c62828;
	text-align: center;
	line-height: 40px;
	font-size: 1.5rem;
	transition: background 0.2s, color 0.2s;
	border: 1.5px solid #ffeaea;
}

@media (max-width: 600px) {
	.about h2, .location h2 {
		font-size: 1.2rem;
	}
}
/* Hizmet kartları */
.service-cards {
	display: flex;
	flex-direction: row;
	gap: 36px;
	justify-content: center;
	margin-bottom: 0;
	width: 100%;
	max-width: 1000px;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
}
.service-card {
	background: #b32525;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
	padding: 32px 24px;
	margin: 0 12px;
	min-width: 260px;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
}

.service-img {
	width: 160px;
	height: 100px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
	margin-bottom: 18px;
	border: 2px solid #f3f3f3;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.service-card:hover {
	transform: translateY(-4px) scale(1.04);
	box-shadow: 0 6px 24px #0005;
}
.service-card .tick {
font-size: 2.2rem;
color: #ffd600;
margin-bottom: 8px;
display: block;
text-align: center;

}



.service-card span {
	display: block;
	text-align: center;
	font-size: 1.1rem;
	margin-top: 4px;
	font-weight: 600;
}

.service-card .yellow {
	color: #ffd600;
	font-weight: 900;
}
@media (max-width: 900px) {
	.service-cards {
		gap: 12px;
	}
	.service-card {
		width: 180px;
		padding: 16px 8px;
		font-size: 1rem;
	}
}
@media (max-width: 600px) {
	.service-cards {
		flex-direction: column;
		gap: 10px;
	}
	.service-card {
		width: 98vw;
		padding: 12px 4px;
		font-size: 0.95rem;
	}
}
/* Hizmetler kartı ve listesi */
.services {
	background: #c62828;
	padding: 40px 0;
	color: #fff;
}
.services-card {
	background: #a31515;
	border-radius: 32px;
	box-shadow: 0 8px 48px #0007, 0 2px 24px #b71c1c;
	padding: 48px 0;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.services-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
}
.services-list li {
	display: flex;
	align-items: center;
	font-size: 1.2rem;
	margin-bottom: 14px;
	font-weight: 600;
}
.tick {
	color: #ffd600;
	font-size: 1.4rem;
	margin-right: 10px;
}
.yellow {
	color: #ffd600;
	font-weight: 700;
}
.service-info {
	text-align: center;
	margin-top: 0;
	align-self: center;
}
.service-24 {
	display: inline-block;
	background: #d32f2f;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	border-radius: 24px;
	padding: 10px 28px;
	box-shadow: 0 2px 8px #0003;
}
.service-24 .yellow {
	color: #ffd600;
	font-weight: 900;
}
@media (max-width: 600px) {
	.services-card {
		padding: 18px 8px;
		max-width: 98vw;
	}
	.services-list li {
		font-size: 1rem;
	}
	.service-24 {
		font-size: 1rem;
		padding: 8px 12px;
	}
}
/* Kartvizit temalı menü ve başlık renkleri */
body {
	background: #f7f7f9;
	color: #232323;
	font-family: 'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif;
	margin: 0;
	font-size: 1.08rem;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
	font-smooth: always;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.02em;
}
p, li, span, a, button, input, label, .about-content {
	font-family: 'Inter', 'Poppins', 'Segoe UI', Arial, sans-serif;
	font-weight: 400;
	letter-spacing: 0.01em;
}
header {
	background: #fff;
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
	padding: 0.5rem 0;
}
.logo img {
	filter: drop-shadow(0 0 4px #0008);
}
.main-nav a {
	text-decoration: none;
	color: #c62828;
	font-weight: 700;
	font-size: 1.1rem;
	transition: color 0.2s, background 0.2s;
	padding: 6px 18px;
	border-radius: 18px;
}
.main-nav a:hover, .main-nav a:focus {
	color: #fff;
	background: #c62828;
}
.hero {
	background: linear-gradient(90deg, #d32f2f 0%, #c62828 100%);
	color: #fff;
	padding: 64px 0 48px 0;
	text-align: center;
	box-shadow: 0 4px 32px #0006;
}
.hero h1 {
	font-size: 2.7rem;
	margin-bottom: 12px;
	letter-spacing: 2px;
	font-weight: 900;
	color: #ffd600;
	text-shadow: 2px 2px 8px #000a;
}
.hero h2 {
	font-size: 1.5rem;
	margin-bottom: 18px;
	font-weight: 700;
	color: #fff;
	text-shadow: 1px 1px 6px #0008;
}
.hero p {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	color: #fff;
	text-shadow: 1px 1px 4px #0007;
}
/* Hızlı iletişim butonları */
.quick-contact {
	position: fixed;
	right: 24px;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	z-index: 1000;
}
.quick-contact a {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #25d366;
	color: #fff;
	padding: 10px 18px;
	border-radius: 32px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
	transition: background 0.2s, box-shadow 0.2s;
}
.quick-contact a.phone {
	background: #1976d2;
}
.quick-contact a:hover {
	background: #128c7e;
	box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
.quick-contact a.phone:hover {
	background: #0d47a1;
}
.quick-contact svg {
	width: 22px;
	height: 22px;
	fill: #fff;
}
@media (max-width: 600px) {
	.quick-contact {
		right: 10px;
		bottom: 10px;
	}
	.quick-contact a {
		padding: 8px 12px;
		font-size: 0.95rem;
	}
}
/* Hero (ana başlık) bölümü */
.hero {
	background: linear-gradient(90deg, #d32f2f 0%, #ff7043 100%);
	color: #fff;
	padding: 64px 0 48px 0;
	text-align: center;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 12px;
	letter-spacing: 2px;
	font-weight: 700;
}

    



@media (max-width: 768px) {
	.hero {
		padding: 36px 0 24px 0;
	}
	.hero h1 {
		font-size: 1.6rem;
	}
	.hero h2 {
		font-size: 1.1rem;
	}
	.hero p {
		font-size: 1rem;
	}
}

body {
	margin: 0;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #f8f9fa;
	color: #222;
}

header {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	padding: 0.5rem 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	height: 48px;
	width: auto;
	display: block;
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
}

.main-nav a {
	text-decoration: none;
	color: #222;
	font-weight: 500;
	font-size: 1.1rem;
	transition: color 0.2s;
}

.main-nav a:hover {
	color: #d32f2f;
}

@media (max-width: 768px) {
	.header-flex {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.main-nav ul {
		flex-direction: column;
		gap: 12px;
	}
	.container {
		padding: 0 8px;
	}
}
