/* Theme Name: Bronz Sohbet Teması
Theme URI: www.QBilisim.com
Author: QBilisim
Author URI: Geliştirici Web Sayfası
Description: Qbilisim.com tema "Bronz" serisi.
Version: v1 */
:root {
	--primary: #1e3a8a;
	--primary-light: #3b82f6;
	--secondary: #ea580c;
	--secondary-light: #fb923c;
	--accent: #0ea5e9;
	--dark: #0c1222;
	--light: #f0f9ff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #0c1222;
	color: #fff;
	overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: radial-gradient(ellipse at top, #1e293b 0%, #0c1222 50%, #020617 100%);
	overflow: hidden;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	animation: float-orb 25s infinite;
	opacity: 0.3;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
	top: -250px;
	left: -250px;
	animation-delay: 0s;
}

.orb-2 {
	width: 500px;
	height: 500px;
	background: linear-gradient(135deg, #ea580c, #fb923c);
	bottom: -200px;
	right: -200px;
	animation-delay: 7s;
}

.orb-3 {
	width: 450px;
	height: 450px;
	background: linear-gradient(135deg, #0ea5e9, #1e3a8a);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 14s;
}

@keyframes float-orb {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(60px, -60px) scale(1.15); }
	50% { transform: translate(-40px, 40px) scale(0.85); }
	75% { transform: translate(50px, 60px) scale(1.05); }
}

/* Floating Bubbles */
.bubbles-container {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.bubble {
	position: absolute;
	bottom: -150px;
	border-radius: 50%;
	opacity: 0.4;
	animation: rise linear infinite;
}

@keyframes rise {
	0% {
		bottom: -150px;
		opacity: 0;
	}
	10% {
		opacity: 0.4;
	}
	90% {
		opacity: 0.4;
	}
	100% {
		bottom: 110%;
		opacity: 0;
	}
}

/* SVG Wave Animation */
.svg-wave-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.svg-shapes-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
}

@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 0 20px rgba(30, 58, 138, 0.4); }
	50% { box-shadow: 0 0 40px rgba(30, 58, 138, 0.7), 0 0 60px rgba(234, 88, 12, 0.5); }
}

/* Header */
header {
	position: relative;
	z-index: 100;
	backdrop-filter: blur(20px);
	background: rgba(12, 18, 34, 0.85);
	border-bottom: 1px solid rgba(30, 58, 138, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #1e3a8a, #ea580c);
	background-size: 200% 200%;
	animation: gradient-shift 4s ease infinite;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 24px;
	box-shadow: 0 8px 32px rgba(30, 58, 138, 0.4);
	position: relative;
}

.logo::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 18px;
	padding: 2px;
	background: linear-gradient(135deg, #1e3a8a, #ea580c);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.nav-links a {
	color: rgba(255, 255, 255, 0.9);
	margin: 0 20px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	font-weight: 600;
	font-size: 15px;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #1e3a8a, #ea580c);
	transition: all 0.3s;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: #ea580c;
	transform: translateY(-2px);
}

.nav-links a:hover::before {
	width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(234, 88, 12, 0.3));
	border: 2px solid rgba(30, 58, 138, 0.5);
	width: 50px;
	height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	border-radius: 12px;
	transition: all 0.3s;
}

.mobile-menu-btn:hover {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(234, 88, 12, 0.5));
	transform: scale(1.05);
}

.mobile-menu-btn span {
	width: 24px;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #ea580c);
	transition: all 0.3s;
	border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100%;
	background: rgba(12, 18, 34, 0.95);
	backdrop-filter: blur(30px);
	border-bottom: 1px solid rgba(30, 58, 138, 0.3);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 999;
}

.mobile-menu.active {
	max-height: 500px;
}

.mobile-menu-link {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	padding: 20px 0;
	border-bottom: 1px solid rgba(30, 58, 138, 0.2);
	transition: all 0.3s;
	font-weight: 600;
}

.mobile-menu-link:hover {
	color: #ea580c;
	padding-left: 20px;
	background: rgba(30, 58, 138, 0.1);
}

/* Hero Section */
.hero-section {
	position: relative;
	z-index: 10;
	padding: 120px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	min-height: 85vh;
}

.hero-content .baslik {
	font-size: 3rem;
	font-weight: 900;
	background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #fb923c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
	animation: slideInUp 0.8s ease-out;
	line-height: 1.1;
	letter-spacing: -2px;
}

.hero-content .subtitle {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
	animation: slideInUp 1s ease-out;
	line-height: 1.8;
	font-weight: 400;
}

.hero-badges {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
	animation: slideInUp 1.2s ease-out;
	flex-wrap: wrap;
}

.badge-item {
	background: rgba(30, 58, 138, 0.3);
	border: 1px solid rgba(30, 58, 138, 0.5);
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.cta-buttons {
	display: flex;
	gap: 20px;
	animation: slideInUp 1.4s ease-out;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, #1e3a8a, #ea580c);
	border: none;
	padding: 18px 50px;
	font-weight: 700;
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
	font-size: 16px;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 20px 60px rgba(30, 58, 138, 0.6);
}

.btn-outline {
	background: transparent;
	border: 2px solid #1e3a8a;
	padding: 18px 50px;
	font-weight: 700;
	border-radius: 16px;
	color: white;
	transition: all 0.4s;
	font-size: 16px;
	position: relative;
	overflow: hidden;
}

.btn-outline::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: linear-gradient(135deg, #1e3a8a, #ea580c);
	transition: all 0.4s;
	transform: translate(-50%, -50%);
	border-radius: 16px;
	z-index: -1;
}

.btn-outline:hover::before {
	width: 120%;
	height: 200%;
}

.btn-outline:hover {
	border-color: #ea580c;
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

/* Connect Card */
.connect-card {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(12, 18, 34, 0.7));
	backdrop-filter: blur(30px);
	border: 2px solid rgba(30, 58, 138, 0.4);
	border-radius: 32px;
	padding: 50px;
	animation: slideInUp 1.2s ease-out, float 6s ease-in-out infinite;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 80px rgba(30, 58, 138, 0.2);
	position: relative;
	overflow: hidden;
}

.connect-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 70%);
	animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.connect-card h3 {
	position: relative;
	z-index: 1;
	font-weight: 800;
	font-size: 1.8rem;
	background: linear-gradient(135deg, #fff, #60a5fa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.form-group {
	position: relative;
	z-index: 1;
}

.form-icon {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1rem;
	z-index: 2;
	pointer-events: none;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.3s;
}

.form-group:focus-within .form-icon {
	color: #3b82f6;
}

.form-control, .form-select {
	background: rgba(12, 18, 34, 0.8);
	border: 2px solid rgba(30, 58, 138, 0.4);
	color: white;
	padding: 18px 20px 18px 55px;
	border-radius: 16px;
	transition: all 0.3s;
	font-weight: 500;
	position: relative;
	z-index: 1;
	width: 100%;
}

.form-control:focus, .form-select:focus {
	background: rgba(12, 18, 34, 0.9);
	border-color: #1e3a8a;
	box-shadow: 0 0 0 5px rgba(30, 58, 138, 0.2), 0 8px 24px rgba(30, 58, 138, 0.3);
	color: white;
	transform: translateY(-2px);
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-select option {
	background: #1e293b;
	color: white;
}

.device-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	position: relative;
	z-index: 1;
}

.device {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(234, 88, 12, 0.3));
	color: white;
	text-decoration: none;
	border: 2px solid rgba(30, 58, 138, 0.5);
	padding: 16px;
	border-radius: 16px;
	text-align: center;
	font-size: 15px;
	transition: all 0.4s;
	cursor: pointer;
	font-weight: 700;
	position: relative;
	overflow: hidden;
}

.device::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(234, 88, 12, 0.5));
	transition: all 0.4s;
	transform: translate(-50%, -50%);
	border-radius: 16px;
}

.device:hover::before {
	width: 120%;
	height: 200%;
}

.device:hover {
	transform: translateY(-5px) scale(1.05);
	border-color: #ea580c;
	box-shadow: 0 12px 32px rgba(30, 58, 138, 0.4);
}

/* Stats Section */
.stats-section {
	position: relative;
	top: 50px;
	z-index: 10;
	padding: 100px 0;
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(12, 18, 34, 0.6));
	backdrop-filter: blur(20px);
	margin: 80px 0;
	border-radius: 40px;
	border: 2px solid rgba(30, 58, 138, 0.3);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.stat-card {
	text-align: center;
	padding: 40px;
	position: relative;
}

.stat-number {
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(135deg, #1e3a8a, #ea580c, #0ea5e9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
	animation: pulse-glow 3s infinite;
}

.stat-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.2rem;
	font-weight: 600;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 100px 0;
	position: relative;
	z-index: 10;
}

.feature-card {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(12, 18, 34, 0.7));
	backdrop-filter: blur(30px);
	border: 2px solid rgba(30, 58, 138, 0.4);
	border-radius: 28px;
	padding: 50px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s;
}

.feature-card:hover::before {
	opacity: 1;
	animation: rotate-gradient 3s linear infinite;
}

.feature-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 30px 80px rgba(30, 58, 138, 0.5);
	border-color: #ea580c;
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #1e3a8a, #ea580c);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	font-size: 2.5rem;
	box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
	position: relative;
	z-index: 1;
	transition: all 0.5s;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 20px 60px rgba(30, 58, 138, 0.6);
}

.feature-card h4 {
	font-weight: 800;
	font-size: 1.5rem;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.feature-card p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

/* Testimonials */
.testimonials-carousel {
	position: relative;
	padding: 0 50px;
}

.swiper {
	width: 100%;
	padding: 20px 0 60px 0;
}

.swiper-slide {
	height: auto;
}
.swiper-wrapper {
	height: auto;
}
.swiper-button-next,
.swiper-button-prev {
	color: #1e3a8a;
	background: rgba(30, 58, 138, 0.2);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	backdrop-filter: blur(10px);
	transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px;
	font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(30, 58, 138, 0.4);
	transform: scale(1.1);
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: linear-gradient(135deg, #1e3a8a, #ea580c);
	width: 30px;
	border-radius: 6px;
}

@media (max-width: 768px) {
	.testimonials-carousel {
		padding: 0 20px;
	}

	.swiper-button-next,
	.swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 16px;
	}
}

.testimonial-card {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(12, 18, 34, 0.7));
	backdrop-filter: blur(30px);
	border: 2px solid rgba(30, 58, 138, 0.4);
	border-radius: 28px;
	padding: 45px;
	height: 100%;
	transition: all 0.5s;
	position: relative;
	overflow: hidden;
}

.testimonial-card::after {
	content: '"';
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 120px;
	color: rgba(30, 58, 138, 0.15);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 70px rgba(30, 58, 138, 0.4);
	border-color: #ea580c;
}

.avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1.6rem;
	margin-right: 20px;
	border: 3px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 1;
}

/* Blog Cards */
.blog-card {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(12, 18, 34, 0.7));
	backdrop-filter: blur(30px);
	border: 2px solid rgba(30, 58, 138, 0.4);
	border-radius: 28px;
	overflow: hidden;
	transition: all 0.5s;
	height: 100%;
}

.blog-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 80px rgba(30, 58, 138, 0.5);
	border-color: #ea580c;
}

.blog-image {
	height: 300px;
	background: linear-gradient(135deg, #1e3a8a, #ea580c);
	position: relative;
	overflow: hidden;
}

.blog-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent);
}
.blog-img {
	width: 100%;
	height: auto;
	margin-top: 22px;
	padding: 20px;
	border-radius: 40px;
}

.blog-content {
	padding: 40px;
}

.blog-title {
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.3;
}

.blog-excerpt {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 20px;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #ea580c;
	font-weight: 700;
	transition: all 0.3s;
}

.read-more:hover {
	gap: 15px;
	color: #3b82f6;
}
.pageler {
	margin-top: 20px;
	padding: 17px;
	background: #ff751f;
	border-radius: 10px;
}
.pageler .page-numbers {
	background: #101d25;
	padding: 5px 10px;
	border-radius: 5px;
	color: #f7f9fa;
	text-decoration: none;
}
.pageler .page-numbers:hover {
	background: #f7f9fa;
	color: #101d25;
}
.pageler .current {
	background: #101d25;
	color: #ff751f;
}
.yorum{;
	padding: 10px;
	border-radius: 10px;
	margin-top: 10px;
}
.yorum a{
	color: #C1FF72;
}
.yorum li{
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid #2F748E;
	list-style-type: none;
	border-radius: 5px
}
.yorum textarea{
	width: 100%;
	height: 100px;
	border-radius: 5px
}
.yorum input[type=text]{
	width: 100%;
	border-radius: 5px;
	background: #F3F5F9;
	border: none;
}
.yorum input[type=submit]{
	background: #C1FF72;
	color: #2B3465;2B3465
	border-radius: 10px;
	text-align: center;
	padding: 10px;
	border: none;
}
.yorum input[type=submit]:hover {
	background: #81cdb7;
	color: #2B3465;
}
.yorum .comment-form-url{
	display: none
}
/* Makale Bar Styles */
.makalebar {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(12, 18, 34, 0.7));
	backdrop-filter: blur(30px);
	border: 2px solid rgba(30, 58, 138, 0.4);
	border-radius: 28px;
	padding: 50px;
	position: relative;
	z-index: 10;
	margin: 40px 0;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.makalebar h1 {
	font-size: 3rem;
	font-weight: 900;
	background: linear-gradient(135deg, #ffffff, #60a5fa, #fb923c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
	line-height: 1.2;
	border-bottom: 3px solid rgba(30, 58, 138, 0.3);
	padding-bottom: 20px;
}

.makalebar h2 {
	font-size: 2.2rem;
	font-weight: 800;
	color: #60a5fa;
	margin-top: 50px;
	margin-bottom: 25px;
	line-height: 1.3;
	border-left: 5px solid #1e3a8a;
	padding-left: 20px;
}

.makalebar h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #fb923c;
	margin-top: 40px;
	margin-bottom: 20px;
	line-height: 1.4;
}

.makalebar h4 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0ea5e9;
	margin-top: 35px;
	margin-bottom: 18px;
	line-height: 1.4;
}

.makalebar h5 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #93c5fd;
	margin-top: 30px;
	margin-bottom: 15px;
	line-height: 1.5;
}

.makalebar h6 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fdba74;
	margin-top: 25px;
	margin-bottom: 12px;
	line-height: 1.5;
}

.makalebar p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.9;
	margin-bottom: 20px;
	font-weight: 400;
}

.makalebar a {
	color: #ea580c;
	text-decoration: none;
	font-weight: 600;
	border-bottom: 2px solid transparent;
	transition: all 0.3s;
}

.makalebar a:hover {
	color: #fb923c;
	border-bottom-color: #fb923c;
}

.makalebar strong,
.makalebar b {
	color: #60a5fa;
	font-weight: 700;
}

.makalebar em,
.makalebar i {
	color: #fdba74;
	font-style: italic;
}

.makalebar ul,
.makalebar ol {
	margin: 25px 0;
	padding-left: 40px;
}

.makalebar ul li,
.makalebar ol li {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 12px;
	position: relative;
}

.makalebar ul li::marker {
	color: #1e3a8a;
	font-size: 1.2rem;
}

.makalebar ol li::marker {
	color: #ea580c;
	font-weight: 700;
}

.makalebar blockquote {
	background: rgba(30, 58, 138, 0.2);
	border-left: 5px solid #1e3a8a;
	margin: 30px 0;
	padding: 25px 30px;
	border-radius: 12px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.15rem;
	line-height: 1.8;
	position: relative;
}

.makalebar blockquote::before {
	content: '"';
	font-size: 4rem;
	color: rgba(30, 58, 138, 0.3);
	position: absolute;
	top: -10px;
	left: 10px;
	font-family: Georgia, serif;
}

.makalebar code {
	background: rgba(30, 58, 138, 0.3);
	color: #60a5fa;
	padding: 3px 8px;
	border-radius: 6px;
	font-family: 'Courier New', monospace;
	font-size: 0.95rem;
	border: 1px solid rgba(30, 58, 138, 0.5);
}

.makalebar pre {
	background: rgba(12, 18, 34, 0.8);
	border: 2px solid rgba(30, 58, 138, 0.4);
	border-radius: 16px;
	padding: 25px;
	overflow-x: auto;
	margin: 25px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.makalebar pre code {
	background: transparent;
	color: #93c5fd;
	padding: 0;
	border: none;
	font-size: 0.95rem;
	line-height: 1.6;
}

.makalebar hr {
	border: none;
	height: 2px;
	background: linear-gradient(90deg, transparent, #1e3a8a, #ea580c, transparent);
	margin: 50px 0;
}

.makalebar table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
	background: rgba(30, 41, 59, 0.3);
	border-radius: 12px;
	overflow: hidden;
}

.makalebar table thead {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.makalebar table th {
	color: white;
	font-weight: 700;
	padding: 18px 20px;
	text-align: left;
	font-size: 1.05rem;
}

.makalebar table td {
	color: rgba(255, 255, 255, 0.85);
	padding: 15px 20px;
	border-bottom: 1px solid rgba(30, 58, 138, 0.2);
	font-size: 1rem;
}

.makalebar table tr:hover {
	background: rgba(30, 58, 138, 0.2);
}

.makalebar img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 30px 0;
	border: 2px solid rgba(30, 58, 138, 0.3);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.makalebar figure {
	margin: 30px 0;
}

.makalebar figcaption {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
	text-align: center;
	margin-top: 12px;
	font-style: italic;
}

.makalebar mark {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
	color: white;
	padding: 2px 6px;
	border-radius: 4px;
}

.makalebar del {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: line-through;
}

.makalebar ins {
	color: #10b981;
	text-decoration: underline;
	text-decoration-color: #10b981;
}

.makalebar kbd {
	background: rgba(30, 58, 138, 0.4);
	color: white;
	padding: 4px 10px;
	border-radius: 6px;
	border: 1px solid rgba(30, 58, 138, 0.6);
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.makalebar abbr {
	color: #fb923c;
	text-decoration: none;
	border-bottom: 2px dotted #fb923c;
	cursor: help;
}

.makalebar small {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.makalebar sup {
	color: #ea580c;
	font-weight: 600;
}

.makalebar sub {
	color: #0ea5e9;
	font-weight: 600;
}

.makalebar dl {
	margin: 25px 0;
}

.makalebar dt {
	color: #60a5fa;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 8px;
	font-size: 1.1rem;
}

.makalebar dd {
	color: rgba(255, 255, 255, 0.85);
	margin-left: 30px;
	margin-bottom: 15px;
	line-height: 1.7;
}

@media (max-width: 768px) {
	.makalebar {
		padding: 30px 20px;
	}

	.makalebar h1 {
		font-size: 2rem;
	}

	.makalebar h2 {
		font-size: 1.6rem;
	}

	.makalebar h3 {
		font-size: 1.4rem;
	}

	.makalebar p,
	.makalebar ul li,
	.makalebar ol li {
		font-size: 1rem;
	}

	.makalebar table {
		font-size: 0.9rem;
	}
}
/* FAQ */
.faq-item {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(12, 18, 34, 0.7));
	backdrop-filter: blur(30px);
	border: 2px solid rgba(30, 58, 138, 0.4);
	border-radius: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	transition: all 0.4s;
}

.faq-item:hover {
	border-color: #1e3a8a;
	box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.faq-question {
	padding: 30px 40px;
	cursor: pointer;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.15rem;
}

.faq-question::after {
	content: '+';
	font-size: 2rem;
	color: #1e3a8a;
	transition: all 0.4s;
	font-weight: 300;
}

.faq-question.active::after {
	transform: rotate(45deg);
	color: #ea580c;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s;
	padding: 0 40px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.9;
}

.faq-answer.open {
	max-height: 800px;
	padding: 0 40px 30px 40px;
}

/* Footer */
footer {
	position: relative;
	z-index: 10;
	background: rgba(12, 18, 34, 0.9);
	backdrop-filter: blur(30px);
	border-top: 2px solid rgba(30, 58, 138, 0.3);
	padding: 80px 0 40px 0;
	margin-top: 120px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s;
	font-weight: 500;
	display: block;
	margin-bottom: 12px;
}

.footer-links a:hover {
	color: #ea580c;
	padding-left: 10px;
}

.section-heading {
	text-align: center;
	margin-bottom: 80px;
}

.section-heading .baslik {
	font-size: 3.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #fff, #60a5fa, #fb923c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.section-heading p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.3rem;
	font-weight: 500;
}

.badge {
	padding: 12px 24px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
	.hero-section {
		grid-template-columns: 1fr;
		gap: 60px;
		padding: 80px 0;
	}

	.hero-content .baslik {
		font-size: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-content .baslik {
		font-size: 2.5rem;
	}

	.connect-card {
		padding: 35px;
		order: -1;
	}

	.device-grid {
		grid-template-columns: 1fr;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.section-heading .baslik {
		font-size: 2.5rem;
	}
}