/* ============================================================
   ABOUT PAGE - HAKKIMIZDA SAYFASI
   Original Tema
============================================================ */

/* ========================================
   PAGE HEADER
======================================== */

.about-page-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: var(--spacing-2xl) 0;
	color: white;
	text-align: center;
	margin-bottom: var(--spacing-2xl);
}

.about-page-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

.about-page-subtitle {
	font-size: 1.125rem;
	opacity: 0.9;
	margin: 0;
}

/* ========================================
   STORY SECTION
======================================== */

.about-story {
	background: white;
	border-radius: var(--radius-xl);
	padding: var(--spacing-2xl);
	border: 1px solid var(--gray-200);
	margin-bottom: var(--spacing-2xl);
}

.about-story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
}

.about-story-text h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0 0 var(--spacing-lg) 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.about-story-text h2 i {
	color: var(--primary);
}

.about-story-text p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--gray-600);
	margin-bottom: var(--spacing-md);
}

.about-story-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ========================================
   VALUES SECTION
======================================== */

.about-values {
	margin-bottom: var(--spacing-2xl);
}

.about-values-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0 0 var(--spacing-2xl) 0;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-lg);
}

.value-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: var(--spacing-xl);
	text-align: center;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	border-color: var(--primary);
}

.value-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-light) 0%, #FFF7F2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--spacing-md);
	font-size: 2rem;
	color: var(--primary);
}

.value-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0 0 0.5rem 0;
}

.value-text {
	font-size: 0.9375rem;
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

/* ========================================
   STATS SECTION
======================================== */

.about-stats {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border-radius: var(--radius-xl);
	padding: var(--spacing-2xl);
	margin-bottom: var(--spacing-2xl);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-xl);
}

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

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	margin: 0 0 0.25rem 0;
	display: block;
}

.stat-label {
	font-size: 1rem;
	opacity: 0.9;
	margin: 0;
}

/* ========================================
   TEAM SECTION
======================================== */

.about-team {
	margin-bottom: var(--spacing-2xl);
}

.about-team-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0 0 var(--spacing-2xl) 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-lg);
}

.team-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: var(--spacing-lg);
	text-align: center;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto var(--spacing-md);
	overflow: hidden;
	border: 4px solid var(--primary-light);
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0 0 0.25rem 0;
}

.team-role {
	font-size: 0.875rem;
	color: var(--primary);
	font-weight: 600;
	margin: 0 0 var(--spacing-sm) 0;
}

.team-social {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.team-social a {
	width: 36px;
	height: 36px;
	background: var(--gray-100);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
	transition: all 0.3s ease;
	text-decoration: none;
}

.team-social a:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

/* ========================================
   CTA SECTION
======================================== */

.about-cta {
	background: linear-gradient(135deg, var(--primary-light) 0%, #FFF7F2 100%);
	border-radius: var(--radius-xl);
	padding: var(--spacing-2xl);
	text-align: center;
	border: 1px solid var(--primary);
}

.about-cta h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0 0 var(--spacing-md) 0;
}

.about-cta p {
	font-size: 1.125rem;
	color: var(--gray-600);
	margin: 0 0 var(--spacing-lg) 0;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border: none;
	border-radius: var(--radius-md);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
	color: white;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 992px) {
	.about-story-content {
		grid-template-columns: 1fr;
	}
	
	.values-grid {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.about-page-title {
		font-size: 1.75rem;
	}
	
	.about-story {
		padding: var(--spacing-lg);
	}
	
	.about-story-text h2 {
		font-size: 1.5rem;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.team-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-number {
		font-size: 2.5rem;
	}
}
