* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-red: #dc2626;
	--primary-red-dark: #b91c1c;
	--primary-red-light: #ef4444;
	--accent-yellow: #fbbf24;
	--accent-cyan: #06b6d4;
	--accent-red: #f43f5e;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	color: var(--gray-800);
	overflow-x: hidden;
	background: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.top-bar {
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
	color: #fff;
	padding: 12px 0;
	font-size: 14px;
}

@media (max-width: 768px) {
	.top-bar {
		display: none;
	}
}


.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar .email {
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.3s;
}

.top-bar .email:hover {
	opacity: 0.9;
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 24px;
}

.top-bar .phone {
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	transition: opacity 0.3s;
}

.top-bar .phone:hover {
	opacity: 0.9;
}

.social-links {
	display: flex;
	gap: 10px;
}

/* Navbar */
.navbar {
	padding: 18px 0;
	background: #fff;
}

.navbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;

	width: 100%;
	margin: 0;            /* varsa 0 auto'yu temizle */
	padding-left: 0;      /* kenarlara yapışsın istiyorsan */
	padding-right: 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 22px;
	font-weight: 800;
	color: var(--primary-red);
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo-icon {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.logo-text {
	letter-spacing: 1px;
}

.logo-divider {
	margin: 0 4px;
	opacity: 0.5;
}

.nav-menu {
	display: flex;
	gap: 35px;
	align-items: center;
}

.nav-link {
	color: var(--gray-700);
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 6px;
	position: relative;
	padding: 8px 0;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-red);
	transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-red);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}



/* Button Styles */
.btn {
	padding: 13px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
	color: #fff;
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
	transform: translateY(-2px);
}

.btn-large {
	padding: 16px 32px;
	font-size: 16px;
	margin-top: 20px;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--gray-800);
	transition: all 0.3s;
	border-radius: 2px;
}

/* Hero Section */
.hero {
	margin-top: 120px;
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(185, 28, 28, 0.9) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease;
}

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

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 25px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 20px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
	animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
	font-size: 22px;
	margin-bottom: 35px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	font-weight: 400;
	opacity: 0.95;
	animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 50px;
	animation: fadeInUp 1s ease 0.5s both;
}

.btn-hero {
	background: #fff;
	color: var(--primary-red);
	padding: 16px 35px;
	font-size: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
	background: var(--gray-50);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	padding: 16px 35px;
	font-size: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

.hero-stats {
	display: flex;
	gap: 50px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 5px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
	font-size: 14px;
	opacity: 0.9;
	font-weight: 500;
}

/* Services Cards */
.services-cards {
	padding: 80px 0;
	background: var(--gray-50);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: -120px;
}

.service-card {
	background: #fff;
	padding: 45px 35px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--gray-100);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-yellow), var(--accent-cyan), var(--primary-red));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	border-color: var(--gray-200);
}

.service-card.featured {
	border: 2px solid var(--primary-red);
	background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.featured-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--primary-red);
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.card-icon-wrapper {
	margin-bottom: 25px;
}

.card-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	font-size: 36px;
	color: #fff;
	position: relative;
	transition: all 0.4s ease;
}

.card-icon::before {
	content: "";
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border-radius: 50%;
	opacity: 0.2;
	transition: all 0.4s ease;
}

.service-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
}

.card-icon.yellow {
	background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.card-icon.yellow::before {
	background: var(--accent-yellow);
}

.card-icon.cyan {
	background: linear-gradient(135deg, var(--accent-cyan) 0%, #0891b2 100%);
	box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.card-icon.cyan::before {
	background: var(--accent-cyan);
}

.card-icon.red {
	background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
	box-shadow: 0 8px 25px rgba(244, 63, 94, 0.4);
}

.card-icon.red::before {
	background: var(--accent-red);
}

.card-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--gray-900);
}

.card-description {
	color: var(--gray-600);
	margin-bottom: 24px;
	line-height: 1.7;
	font-size: 15px;
}

.card-link {
	color: var(--primary-red);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	font-size: 15px;
}

.card-link:hover {
	gap: 14px;
	color: var(--primary-red-dark);
}

/* About Section */
.about-section {
	padding: 100px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image img {
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 2;
}

.image-decoration {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
	border-radius: 20px;
	z-index: 1;
	opacity: 0.1;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
	color: var(--primary-red);
	border-radius: 25px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.section-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 24px;
	line-height: 1.3;
}

.section-text {
	color: var(--gray-600);
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 16px;
}

.about-features {
	margin-top: 35px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.feature-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 20px;
	background: var(--gray-50);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transform: translateX(5px);
}

.feature-icon {
	width: 55px;
	height: 55px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-content h4 {
	font-size: 19px;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 6px;
}

.feature-content p {
	color: var(--gray-600);
	font-size: 15px;
	line-height: 1.6;
}

/* Services Detail Section */
.services-detail {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section-description {
	color: var(--gray-600);
	font-size: 17px;
	margin-top: 15px;
	line-height: 1.7;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 35px;
}

.service-detail-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--gray-100);
}

.service-detail-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	border-color: var(--gray-200);
}

.service-image {
	position: relative;
	height: 280px;
	overflow: hidden;
}

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

.service-detail-card:hover .service-image img {
	transform: scale(1.15);
}

.service-icon-overlay {
	position: absolute;
	bottom: 25px;
	left: 25px;
	width: 70px;
	height: 70px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-detail-content {
	padding: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.service-detail-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 6px;
}

.service-detail-content p {
	color: var(--gray-600);
	font-size: 14px;
}

.service-detail-link {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.service-detail-link:hover {
	transform: scale(1.1) rotate(45deg);
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* CTA Banner */
.cta-banner {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

.cta-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.cta-text h2 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 12px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-text p {
	font-size: 17px;
	opacity: 0.95;
	max-width: 600px;
}

.btn-cta {
	background: #fff;
	color: var(--primary-red);
	padding: 18px 40px;
	font-size: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
	background: var(--gray-50);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Info Section */
.info-section {
	padding: 100px 0;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.info-image {
	position: relative;
	order: 2;
}

.info-image img {
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 2;
}

.image-decoration-right {
	position: absolute;
	top: 20px;
	right: -20px;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-yellow) 100%);
	border-radius: 20px;
	z-index: 1;
	opacity: 0.1;
}

.info-content {
	order: 1;
}

.info-features {
	margin-top: 35px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.info-feature-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 22px;
	background: var(--gray-50);
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.info-feature-item:hover {
	background: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transform: translateX(-5px);
	border-color: var(--gray-200);
}

.info-feature-icon {
	width: 55px;
	height: 55px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.info-feature-content h4 {
	font-size: 19px;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 6px;
}

.info-feature-content p {
	color: var(--gray-600);
	font-size: 15px;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: black;
	color: #fff;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: bold;
	color: #dc2626;
	margin-bottom: 15px;
}

.footer-logo img{
	width:150px;	
	height:auto;
}

.footer-description {
	color: #9ca3af;
	margin-bottom: 20px;
	line-height: 1.6;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	color: white;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #dc2626;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #9ca3af;
	font-size:14px;
}

.footer-contact i {
	color: #dc2626;
	margin-top: 3px;
}

.footer-contact span {
	color: white;
}

.footer-contact a {
	color: white;
	transition: color 0.3s;
}

.footer-contact a:hover {
	color: #dc2626;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
}

@media (max-width: 1024px) {
	.footer .footer-content {
		display: grid;
		grid-template-columns: 1fr 1fr !important;
		gap: 0px;
	}
	.footer .footer-column { min-width: 0; }
}

@media (max-width: 480px) {
	.footer .footer-content {
		grid-template-columns: 1fr 1fr !important;
		gap: 16px;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav-menu {
		display: none;
	}

	.nav-actions {
		display: none;
	}

	.top-bar-content {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.top-bar-right {
		flex-direction: column;
		gap: 12px;
	}

	.hero {
		min-height: 600px;
		margin-top: 80px;
	}

	.hero-title {
		font-size: 38px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-stats {
		gap: 30px;
	}

	.stat-number {
		font-size: 28px;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	.about-grid,
	.info-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.info-image {
		order: 1;
	}

	.info-content {
		order: 2;
	}

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

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

	.cta-content {
		flex-direction: column;
		text-align: center;
	}

	.cta-text h2 {
		font-size: 28px;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

}

/* Page Header */
.page-header {
	margin-top: 120px;
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

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

.page-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 15px;
}

.page-subtitle {
	font-size: 18px;
	opacity: 0.95;
}

.breadcrumb {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	font-size: 14px;
}

.breadcrumb a {
	color: #fff;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.breadcrumb a:hover {
	opacity: 1;
}

/* Contact Section */
.contact-section {
	padding: 100px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 50px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.info-card {
	background: var(--gray-50);
	padding: 30px;
	border-radius: 16px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
	transition: all 0.3s ease;
	border: 1px solid var(--gray-100);
}

.info-card:hover {
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-5px);
}

.info-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	flex-shrink: 0;
}

.icon-yellow {
	background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
	box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.icon-cyan {
	background: linear-gradient(135deg, var(--accent-cyan) 0%, #0891b2 100%);
	box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.icon-red {
	background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
	box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.info-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 8px;
}

.info-content p {
	color: var(--gray-600);
	line-height: 1.7;
}

.info-content a {
	color: var(--primary-red);
	font-weight: 600;
	transition: color 0.3s;
}

.info-content a:hover {
	color: var(--primary-red-dark);
}

/* Contact Form */
.contact-form {
	background: #fff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--gray-100);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--gray-900);
	font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid var(--gray-200);
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	transition: all 0.3s ease;
	background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary-red);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.btn-submit {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
	color: var(--primary-red);
	border-radius: 25px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.section-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 20px;
	line-height: 1.3;
}

.section-description {
	color: var(--gray-600);
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 40px;
}

/* Map Section */
.map-section {
	padding: 0 0 100px;
}

.map-container {
	width: 100%;
	height: 450px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	background: var(--gray-100);
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
}

.map-embed {
	margin-top: 24px;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.map-embed iframe {
	display: block;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}

@supports not (aspect-ratio: 1 / 1) {
	.map-embed {
		position: relative;
		padding-top: 56.25%; /* 16:9 */
	}
	.map-embed iframe {
		position: absolute;
		inset: 0;
	}
}

@media (max-width: 768px) {
	.map-embed { border-radius: 10px; }
}

/* About Section */
.about-section {
	padding: 100px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
	margin-bottom: 80px;
}

.about-image {
	position: relative;
}

.about-image img {
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	width: 100%;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
	color: var(--primary-red);
	border-radius: 25px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.section-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 24px;
	line-height: 1.3;
}

.section-text {
	color: var(--gray-600);
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 16px;
}

/* Stats Section */
.stats-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	position: relative;
	z-index: 2;
}

.stat-card {
	text-align: center;
	padding: 30px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.stat-card:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.stat-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.stat-number {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 16px;
	opacity: 0.95;
}

/* Values Section */
.values-section {
	padding: 100px 0;
	background: var(--gray-50);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 35px;
	margin-top: 50px;
}

.value-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid var(--gray-100);
	text-align: center;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.value-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
}

.icon-yellow {
	background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.icon-cyan {
	background: linear-gradient(135deg, var(--accent-cyan) 0%, #0891b2 100%);
	box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.icon-red {
	background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
	box-shadow: 0 8px 25px rgba(244, 63, 94, 0.4);
}

.value-card h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 15px;
}

.value-card p {
	color: var(--gray-600);
	line-height: 1.7;
}

/* Team Section */
.team-section {
	padding: 100px 0;
}

.team-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}


@media (max-width: 768px) {
	.page-header {
		margin-top: 100px;
		padding: 60px 0;
	}

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

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

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

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

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