/* ======================================================================
   QUANTUM TEMİZLİK - MASTER STYLESHEET
   Tüm Sayfalar İçin Birleşik CSS Dosyası
   ====================================================================== */

/* ======================================================================
   CSS VARIABLES - Renk Paleti ve Tema Ayarları
   Sütlü Kahverengi & Parliament Mavisi Teması
   ====================================================================== */
:root {
	--primary-color: #002868;
	--secondary-color: #1E3A8A;
	--accent-color: #4169E1;
	--dark-blue: #001844;
	--success-color: #2E7D32;
	--text-dark: #002868;
	--text-light: #5D6B8A;
	--bg-light: #F5E6D3;
	--bg-white: #FFFBF5;
	--bg-cream: #FAF6F0;
	--shadow: 0 10px 40px rgba(0, 40, 104, 0.1);
	--shadow-hover: 0 15px 50px rgba(0, 40, 104, 0.15);
}

/* ======================================================================
   GLOBAL STYLES - Genel Ayarlar
   ====================================================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
	background: var(--bg-cream);
}

/* Ana sayfa için özel body stili */
body.home-page {
	line-height: 1.6;
	overflow-x: hidden;
	background: var(--bg-cream);
}

/* Yasal sayfalar için body arka plan */
body.legal-page {
	background: var(--bg-light);
	line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
}

/* ======================================================================
   FIXED CONTACT BUTTONS - Sabit İletişim Butonları
   ====================================================================== */
.fixed-contact-buttons {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 20px rgba(0, 40, 104, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	color: white;
	font-size: 24px;
}

.whatsapp-btn {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.phone-btn {
	background:linear-gradient(135deg, #5A0018 0%, #3B0010 100%),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="600"/></svg>');
}

.contact-btn:hover {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px rgba(0, 40, 104, 0.4);
}

/* ======================================================================
   HEADER & NAVIGATION - Başlık ve Menü
   ====================================================================== */
header {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
	padding: 15px 0;
	box-shadow: 0 2px 20px rgba(0, 40, 104, 0.2);
}

/* Ana sayfa için fixed header */
.home-page header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
}

nav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: white;
	font-size: 28px;
	font-weight: 800;
	text-decoration: none;
}

.logo i {
	font-size: 32px;
	color: #D4B896;
}

.nav-links {
	display: flex;
	gap: 30px;
	list-style: none;
	align-items: center;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #D4B896;
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.header-phone,
.back-home {
	background: var(--bg-cream);
	color: var(--primary-color);
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.header-phone:hover,
.back-home:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
	display: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

/* ======================================================================
   HERO SECTION - Ana Sayfa Hero Bölümü
   ====================================================================== */
.hero {
	margin-top: 80px;
	background: linear-gradient(135deg, #5A0018 0%, #3B0010 100%),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="600"/></svg>');
	background-size: cover;
	background-position: center;
	padding: 120px 20px;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
	animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 56px;
	margin-bottom: 20px;
	animation: slideDown 1s ease-out;
	color: white;
}

.hero-slogan {
	font-size: 24px;
	margin-bottom: 15px;
	font-weight: 300;
	opacity: 0.95;
	animation: slideDown 1s ease-out 0.2s backwards;
}

.hero-subtitle {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
	animation: slideDown 1s ease-out 0.4s backwards;
}

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

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	animation: slideUp 1s ease-out 0.6s backwards;
}

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

.btn {
	padding: 15px 35px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	font-size: 16px;
}

.btn-primary {
	background: var(--bg-cream);
	color: var(--primary-color);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: var(--bg-cream);
	color: var(--primary-color);
	transform: translateY(-3px);
}

/* ======================================================================
   PAGE HEADER - Yasal Sayfalar İçin Sayfa Başlığı
   ====================================================================== */
.page-header {
	background: linear-gradient(135deg, #B8956B 0%, #9C7A5B 100%);
	padding: 80px 20px 60px;
	text-align: center;
	color: white;
}

.page-header h1 {
	font-size: 48px;
	margin-bottom: 15px;
	color: white;
}

.page-header p {
	font-size: 18px;
	opacity: 0.95;
	max-width: 800px;
	margin: 0 auto;
}

.page-header .update-date {
	margin-top: 20px;
	font-size: 14px;
	opacity: 0.8;
}

/* ======================================================================
   STATS SECTION - İstatistik Kartları
   ====================================================================== */
.stats {
	background: var(--bg-light);
	padding: 60px 20px;
	margin-top: -50px;
	position: relative;
	z-index: 2;
}

.stats-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.stat-card {
	background: var(--bg-white);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.stat-card i {
	font-size: 48px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.stat-number {
	font-size: 42px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.stat-label {
	font-size: 16px;
	color: var(--text-light);
	font-weight: 500;
}

/* ======================================================================
   SERVICES SECTION - Hizmetler Bölümü
   ====================================================================== */
.services {
	padding: 100px 20px;
	background: var(--bg-white);
}

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

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 42px;
	color: var(--text-dark);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #B8956B, #D4B896);
	border-radius: 2px;
}

.section-header p {
	color: var(--text-light);
	font-size: 18px;
	margin-top: 20px;
}

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

.service-card {
	background: var(--bg-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 40, 104, 0.1);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.service-icon {
	background: linear-gradient(135deg, #B8956B 0%, #A0826D 100%);
	padding: 0;
	text-align: center;
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.service-icon i {
	font-size: 64px;
	color: white;
}

/* Görseller için özel stil - 480x320 görsel boyutuna optimize */
.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.3s ease;
}

/* Hover efekti - görsel hafifçe büyür */
.service-card:hover .service-icon img {
	transform: scale(1.05);
}

.service-content {
	padding: 30px;
}

.service-content h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.service-content p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 20px;
}

.service-features {
	list-style: none;
	margin-bottom: 20px;
}

.service-features li {
	padding: 8px 0;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-features i {
	color: var(--success-color);
	font-size: 14px;
}

/* ======================================================================
   ABOUT SECTION - Hakkımızda Bölümü
   ====================================================================== */
.about {
	padding: 100px 20px;
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

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

.about-text h2 {
	font-size: 42px;
	margin-bottom: 25px;
	color: var(--text-dark);
}

.about-text p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 16px;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 30px;
}

.about-feature {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.about-feature i {
	font-size: 24px;
	color: var(--primary-color);
	margin-top: 5px;
}

.about-feature h4 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.about-feature p {
	font-size: 14px;
	color: var(--text-light);
	margin: 0;
}

.about-image {
	position: relative;
}

.about-image::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	right: -20px;
	bottom: -20px;
	background: linear-gradient(135deg, #B8956B 0%, #A0826D 100%);
	border-radius: 20px;
	opacity: 0.2;
	z-index: 0;
}

.about-img-content {
	position: relative;
	z-index: 1;
	background: var(--bg-white);
	padding: 40px;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.vision-mission {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

.vm-card {
	background: linear-gradient(135deg, #5A0018 0%, #3B0010 100%),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="600"/></svg>');
	padding: 30px;
	border-radius: 15px;
	color: white;
}

.vm-card i {
	font-size: 36px;
	margin-bottom: 15px;
	opacity: 0.9;
}

.vm-card h3 {
	font-size: 22px;
	margin-bottom: 12px;
	color: white;
}

.vm-card p {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.95;
	color: white;
}

/* ======================================================================
   COVERAGE SECTION - Hizmet Bölgeleri
   ====================================================================== */
.coverage {
	padding: 100px 20px;
	background: var(--bg-white);
}

.coverage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.coverage-item {
	background: linear-gradient(135deg, #5A0018 0%, #3B0010 100%),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="600"/></svg>');
	padding: 25px;
	border-radius: 15px;
	text-align: center;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.coverage-item:hover {
	border-color: var(--primary-color);
	background: black;
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.coverage-item i {
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.coverage-item h4 {
	font-size: 18px;
	color: #ffffff;
}

/* ======================================================================
   WHY CHOOSE US - Neden Biz?
   ====================================================================== */
.why-choose {
	padding: 100px 20px;
	background: linear-gradient(135deg, #5A0018 0%, #3B0010 100%),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="600"/></svg>');
	color: white;
}

.why-choose .section-header h2 {
	color: white;
}

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

.why-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 35px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

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

.why-card i {
	font-size: 48px;
	margin-bottom: 20px;
	color: #FFFBF5;
}

.why-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: white;
}

.why-card p {
	opacity: 0.9;
	line-height: 1.8;
}

/* ======================================================================
   CONTACT SECTION - İletişim Bölümü
   ====================================================================== */
.contact {
	padding: 100px 20px;
	background: var(--bg-light);
}

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

.contact-info {
	background: var(--bg-white);
	padding: 40px;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.contact-item i {
	font-size: 28px;
	color: var(--primary-color);
	margin-top: 5px;
}

.contact-item h4 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.contact-item p {
	color: var(--text-light);
	line-height: 1.6;
}

.contact-item a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
}

.contact-item a:hover {
	text-decoration: underline;
}

.contact-form {
	background: var(--bg-white);
	padding: 40px;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

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

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--text-dark);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #D4C4B0;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	transition: all 0.3s ease;
	background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 40, 104, 0.1);
}

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

.submit-btn {
	background: linear-gradient(135deg, #5A0018 0%, #3B0010 100%),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="600"/></svg>');
	color: white;
	padding: 15px 40px;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(184, 149, 107, 0.4);
}

/* ======================================================================
   LEGAL PAGES CONTENT - Yasal Sayfalar İçerik Stilleri
   ====================================================================== */
.content {
	max-width: 1000px;
	margin: -30px auto 60px;
	padding: 0 20px;
}

.content-box {
	background: var(--bg-white);
	border-radius: 20px;
	padding: 50px;
	box-shadow: var(--shadow);
}

.content-box h2 {
	font-size: 32px;
	margin: 40px 0 20px;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 15px;
}

.content-box h2:first-child {
	margin-top: 0;
}

.content-box h2 i {
	font-size: 28px;
}

.content-box h3 {
	font-size: 22px;
	margin: 30px 0 15px;
	color: var(--text-dark);
}

.content-box h4 {
	font-size: 18px;
	margin: 20px 0 10px;
	color: var(--text-dark);
}

.content-box p {
	margin-bottom: 20px;
	color: var(--text-light);
	font-size: 16px;
}

.content-box ul, 
.content-box ol {
	margin: 20px 0 20px 25px;
	color: var(--text-light);
}

.content-box li {
	margin-bottom: 12px;
	line-height: 1.8;
}

.content-box strong {
	color: var(--text-dark);
	font-weight: 600;
}

/* Info Box */
.info-box {
	background: linear-gradient(135deg, #EDE4D4 0%, #D4C4B0 100%);
	border-left: 4px solid var(--primary-color);
	padding: 25px;
	border-radius: 10px;
	margin: 30px 0;
}

.info-box i {
	color: var(--primary-color);
	font-size: 24px;
	margin-right: 10px;
}

.info-box p {
	margin: 0;
	color: var(--text-dark);
}

/* Warning Box */
.warning-box {
	background: linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
	border-left: 4px solid #F57C00;
	padding: 25px;
	border-radius: 10px;
	margin: 30px 0;
}

.warning-box i {
	color: #F57C00;
	font-size: 24px;
	margin-right: 10px;
}

/* Highlight Box */
.highlight-box {
	background: var(--bg-light);
	border: 2px solid var(--primary-color);
	border-radius: 15px;
	padding: 30px;
	margin: 30px 0;
}

.highlight-box h3 {
	color: var(--primary-color);
	margin-top: 0;
}

/* Data Category */
.data-category {
	background: var(--bg-white);
	border: 2px solid #D4C4B0;
	border-radius: 15px;
	padding: 25px;
	margin: 20px 0;
	transition: all 0.3s ease;
}

.data-category:hover {
	border-color: var(--primary-color);
	box-shadow: 0 5px 15px rgba(0, 40, 104, 0.1);
}

.data-category h4 {
	color: var(--primary-color);
	margin-top: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Rights Grid */
.rights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.right-card {
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
	border: 2px solid var(--primary-color);
	border-radius: 15px;
	padding: 25px;
	transition: all 0.3s ease;
}

.right-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 40, 104, 0.15);
}

.right-card i {
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.right-card h4 {
	color: var(--text-dark);
	margin: 10px 0;
}

.right-card p {
	font-size: 14px;
	color: var(--text-light);
	margin: 0;
}

/* Contact Card */
.contact-card {
	background: linear-gradient(135deg, #B8956B 0%, #9C7A5B 100%);
	color: white;
	border-radius: 20px;
	padding: 40px;
	margin: 40px 0;
}

.contact-card h3 {
	color: white;
	margin-top: 0;
	font-size: 28px;
}

.contact-card p {
	color: white;
	opacity: 0.95;
}

.contact-card a {
	color: #FFFBF5;
	font-weight: 600;
	text-decoration: none;
}

.contact-card a:hover {
	text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
	background: var(--bg-white);
	box-shadow: 0 2px 10px rgba(0, 40, 104, 0.05);
	border-radius: 10px;
	overflow: hidden;
}

.cookie-table thead {
	background: linear-gradient(135deg, #B8956B 0%, #9C7A5B 100%);
	color: white;
}

.cookie-table th {
	padding: 15px;
	text-align: left;
	font-weight: 600;
}

.cookie-table td {
	padding: 15px;
	border-bottom: 1px solid #D4C4B0;
	color: var(--text-light);
}

.cookie-table tr:last-child td {
	border-bottom: none;
}

.cookie-table tr:hover {
	background: var(--bg-light);
}

.cookie-type {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

.cookie-essential {
	background: #E8F5E9;
	color: #2E7D32;
}

.cookie-functional {
	background: #EDE4D4;
	color: var(--primary-color);
}

.cookie-analytics {
	background: #FFF3E0;
	color: #E65100;
}

/* Control Box */
.control-box {
	background: linear-gradient(135deg, #EDE4D4 0%, #D4C4B0 100%);
	border-radius: 15px;
	padding: 30px;
	margin: 30px 0;
}

.control-box h3 {
	color: var(--primary-color);
	margin-top: 0;
}

/* ======================================================================
   FOOTER - Alt Kısım
   ====================================================================== */
footer {
	background: linear-gradient(135deg, #5A0018 0%, #3B0010 100%),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="600"/></svg>');
	color: white;
	padding: 60px 20px 30px;
}

/* Yasal sayfalar için footer padding */
.legal-page footer {
	padding: 40px 20px;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #D4B896;
}

.footer-section p {
	opacity: 0.9;
	line-height: 1.8;
	margin-bottom: 15px;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: white;
	text-decoration: none;
	opacity: 0.9;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-section ul li a:hover {
	opacity: 1;
	color: #D4B896;
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: #D4B896;
	color: var(--dark-blue);
	transform: translateY(-3px);
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	opacity: 0.8;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.footer-links a {
	color: #D4B896;
	text-decoration: none;
	font-weight: 600;
}

.footer-links a:hover {
	text-decoration: underline;
}

/* ======================================================================
   RESPONSIVE DESIGN - Mobil Uyumluluk
   ====================================================================== */
@media (max-width: 768px) {
	/* Navigation */
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--dark-blue);
		flex-direction: column;
		padding: 20px;
		gap: 15px;
	}
	
	.nav-links.active {
		display: flex;
	}
	
	.mobile-menu-toggle {
		display: block;
	}
	
	/* Hero */
	.hero h1 {
		font-size: 36px;
	}
	
	.hero-slogan {
		font-size: 18px;
	}
	
	/* Page Header */
	.page-header h1 {
		font-size: 32px;
	}
	
	/* Content */
	.content-box {
		padding: 30px 20px;
	}
	
	.content-box h2 {
		font-size: 24px;
	}
	
	/* Grids */
	.about-content,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.about-features {
		grid-template-columns: 1fr;
	}
	
	.vision-mission {
		grid-template-columns: 1fr;
	}
	
	.rights-grid {
		grid-template-columns: 1fr;
	}
	
	/* Contact Buttons */
	.fixed-contact-buttons {
		bottom: 20px;
		right: 20px;
	}
	
	.contact-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	
	/* Tables */
	.cookie-table {
		font-size: 14px;
	}
	
	.cookie-table th,
	.cookie-table td {
		padding: 10px;
	}
}

/* ======================================================================
   UTILITY CLASSES - Yardımcı Sınıflar
   ====================================================================== */
.text-center {
	text-align: center;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.hidden {
	display: none;
}

/* ======================================================================
   END OF STYLESHEET
   ====================================================================== */