* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',sans-serif;
	scroll-behavior: smooth
}

body {
	background: #f0f2f5;
	color: #333;
	line-height: 1.6;
	font-size: 16px
}

:root {
	--primary: #FFD700;
	--secondary: #000;
	--accent: #FF6B00;
	--card-bg: #fff
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0
}

body.no-scroll {
	overflow: hidden
}

header {
	position: sticky;
	top: 0;
	background: rgb(0 0 0 / .95);
	backdrop-filter: blur(5px);
	color: #fff;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	box-shadow: 0 2px 8px rgb(0 0 0 / .3)
}

header .logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none
}

nav {
	display: flex;
	align-items: center
}

nav a {
	color: #fff;
	margin-left: 1.5rem;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: color 0.3s;
	font-size: 1rem
}

nav a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--primary);
	transition: width 0.3s;
	border-radius: 2px
}

nav a:hover,nav a.active {
	color: var(--primary)
}

nav a:hover::after,nav a.active::after {
	width: 100%
}

.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: .5rem
}

.hamburger .bar {
	display: block;
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 5px auto;
	transition: all 0.4s ease-in-out
}

.hamburger.is-active .bar:nth-child(2) {
	opacity: 0
}

.hamburger.is-active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg)
}

.hamburger.is-active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg)
}

.hero {
	position: relative;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	background: linear-gradient(rgb(0 0 0 / .6),rgb(0 0 0 / .7)),url(https://bursavolt.com/images/arka.jpeg) center/cover no-repeat
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: .5rem;
	color: var(--primary);
	text-shadow: 0 0 10px rgb(255 215 0 / .7);
	animation: pulse 2s infinite
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	max-width: 600px
}

.hero .cta-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem
}

.cta {
	padding: 1rem 2rem;
	background: var(--primary);
	color: #000;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	font-size: 1.1rem;
	transition: background-color 0.3s,transform 0.3s,box-shadow 0.3s;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	border: 2px solid #fff0
}

.cta:hover {
	background: var(--accent);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgb(0 0 0 / .2)
}

@keyframes pulse {
	0% {
		text-shadow: 0 0 10px rgb(255 215 0 / .7)
	}

	50% {
		text-shadow: 0 0 20px rgb(255 107 0 / .9)
	}

	100% {
		text-shadow: 0 0 10px rgb(255 215 0 / .7)
	}
}

section {
	scroll-margin-top: 80px;
	padding: 5rem 2rem
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--secondary);
	text-align: center
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--primary);
	margin: .5rem auto 0;
	border-radius: 2px
}

.service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	gap: 2rem;
	text-align: left
}

.service-card {
	background: var(--card-bg);
	border-radius: 15px;
	box-shadow: 0 8px 25px rgb(0 0 0 / .1);
	transition: transform 0.3s,box-shadow 0.3s;
	overflow: hidden;
	display: flex;
	flex-direction: column
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 30px rgb(0 0 0 / .15)
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover
}

.service-card-content {
	padding: 1.5rem;
	flex-grow: 1
}

.service-card h3 {
	margin-bottom: .5rem;
	color: var(--secondary);
	font-size: 1.35rem
}

.service-card p {
	color: #555;
	font-size: 1rem
}

#about {
	background: #fff
}

#about p {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.15rem
}

#contact-cta {
	background: var(--secondary);
	color: #fff
}

.contact-intro {
	font-size: 1.25rem;
	margin-bottom: 2rem
}

.button-linkn {
	background: #FF6B00;
	color: #fff;
	border-color: #FF6B00
}

.button-link {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.15rem;
	margin-top: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgb(0 0 0 / .2);
	gap: 10px
}

.btn-primary {
	background-color: var(--primary);
	color: var(--secondary);
	border: 2px solid var(--primary)
}

.btn-primary:hover {
	background-color: var(--accent);
	color: #fff;
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgb(0 0 0 / .3)
}

.btn-accent {
	background-color: var(--accent);
	color: #fff;
	border: 2px solid var(--accent)
}

.btn-accent:hover {
	background-color: #e03f00;
	border-color: #e03f00;
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgb(255 107 0 / .5)
}

.btn-secondary {
	background-color: rgb(255 255 255 / .2);
	color: #fff;
	border: 2px solid #fff
}

.btn-secondary:hover {
	background-color: #fff;
	color: var(--secondary);
	transform: translateY(-2px)
}

.action-buttons a {
	position: fixed;
	bottom: 20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 15px rgb(0 0 0 / .3);
	z-index: 1000;
	transition: transform 0.3s,background-color 0.3s,box-shadow 0.3s
}

.action-buttons a:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgb(0 0 0 / .4)
}

.whatsapp-btn {
	right: 20px;
	background: #25D366
}

.whatsapp-btn:hover {
	background: #1ebe57
}

.call-btn {
	right: 100px;
	background: var(--accent)
}

.call-btn:hover {
	background: #e03f00
}

#scrollTopBtn {
	position: fixed;
	bottom: 90px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: var(--secondary);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	text-decoration: none;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.3s,visibility 0.3s,transform 0.3s,background-color 0.3s
}

#scrollTopBtn:hover {
	background-color: var(--accent);
	color: #fff
}

#scrollTopBtn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

footer {
	background: #000;
	color: #aaa;
	padding: 2rem;
	text-align: center;
	font-size: 1rem
}

.footer-links {
	margin-bottom: 10px
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	margin: 0 8px;
	font-size: .95rem;
	transition: color 0.3s
}

.footer-links a:hover {
	color: var(--primary)
}

@media (max-width: 768px) {
	header {
		padding:1rem
	}

	nav {
		display: none;
		flex-direction: column;
		width: 100%;
		background: rgb(0 0 0 / .98);
		position: absolute;
		top: 100%;
		left: 0;
		padding: 1rem 0
	}

	nav.is-active {
		display: flex
	}

	nav a {
		margin: 1rem 0;
		font-size: 1.2rem
	}

	.hamburger {
		display: block;
		z-index: 1001
	}

	.hero h1 {
		font-size: 2.5rem
	}

	.hero p {
		font-size: 1rem
	}

	.hero .cta {
		padding: .8rem 1.5rem;
		font-size: .9rem
	}

	section {
		padding: 3rem 1rem
	}

	.section-title {
		font-size: 2rem
	}

	.button-link {
		padding: .8rem 1.5rem;
		font-size: 1rem
	}

	.action-buttons a {
		width: 50px;
		height: 50px;
		font-size: 1.5rem
	}

	.whatsapp-btn {
		right: 15px
	}

	.call-btn {
		right: 75px
	}

	#scrollTopBtn {
		bottom: 75px;
		right: 15px;
		width: 40px;
		height: 40px;
		font-size: 1.2rem
	}
}

.page-hero {
	padding-top: 100px;
	padding-bottom: 50px;
	background: linear-gradient(rgb(0 0 0 / .7),rgb(0 0 0 / .8)),url(https://bursavolt.com/images/arka-kucuk.jpeg) center/cover no-repeat;
	color: #fff;
	text-align: center;
	margin-bottom: 2rem
}

.page-hero h1 {
	font-size: 3rem;
	margin-bottom: .5rem;
	color: var(--primary)
}

.page-hero p {
	font-size: 1.25rem
}

section {
	scroll-margin-top: 80px;
	padding: 5rem 2rem
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--secondary);
	text-align: center
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--primary);
	margin: .5rem auto 0;
	border-radius: 2px
}

.about-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: left
}

.about-content h3 {
	font-size: 1.8rem;
	color: var(--accent);
	margin-top: 2rem;
	margin-bottom: 1rem
}

.about-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem
}

.about-content ul {
	list-style: none;
	padding-left: 0;
	margin-top: 1.5rem
}

.about-content li {
	margin-bottom: 1rem;
	position: relative;
	padding-left: 30px;
	font-weight: 600;
	color: #333
}

.about-content li::before {
	content: '✔️';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-size: 1.2rem
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.15rem;
	margin-top: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgb(0 0 0 / .2);
	gap: 10px;
	background-color: var(--primary);
	color: var(--secondary);
	border: 2px solid var(--primary)
}

.btn-primary:hover {
	background-color: var(--accent);
	color: #fff;
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgb(0 0 0 / .3)
}

.service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	gap: 2rem;
	text-align: left
}

.service-card {
	background: var(--card-bg);
	border-radius: 15px;
	box-shadow: 0 8px 25px rgb(0 0 0 / .1);
	transition: transform 0.3s,box-shadow 0.3s;
	overflow: hidden;
	display: flex;
	flex-direction: column
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 30px rgb(0 0 0 / .15)
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover
}

.service-card-content {
	padding: 1.5rem;
	flex-grow: 1
}

.service-card h3 {
	margin-bottom: .5rem;
	color: var(--secondary);
	font-size: 1.35rem
}

.service-card p {
	color: #555;
	font-size: 1rem
}

.cta {
	padding: .8rem 1.5rem;
	background: var(--accent);
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	margin-top: 1rem;
	transition: background 0.3s
}

.cta:hover {
	background: var(--primary);
	color: #000
}

.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: .5rem
}

.hamburger .bar {
	display: block;
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 5px auto;
	transition: all 0.4s ease-in-out
}

.hamburger.is-active .bar:nth-child(2) {
	opacity: 0
}

.hamburger.is-active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg)
}

.hamburger.is-active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg)
}

.legal-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem;
	background: #fff;
	border-radius: 10px;
	text-align: left;
	box-shadow: 0 4px 15px rgb(0 0 0 / .05)
}

.legal-content h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--secondary);
	border-bottom: 2px solid var(--primary);
	padding-bottom: .5rem
}

.legal-content h3 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: .8rem;
	color: var(--accent)
}

.legal-content p {
	margin-bottom: 1rem
}

.legal-content ul {
	padding-left: 20px;
	margin-bottom: 1.5rem
}

#regions {
	padding-top: 8rem;
	padding-bottom: 5rem;
	background: #f9f9f9
}

.regions-h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: var(--accent)
}

.regions-h2::after {
	background: var(--accent)
}

.region-list {
	margin-top: 2rem;
	text-align: left;
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
	gap: 1rem
}

.region-card {
	background: var(--card-bg);
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgb(0 0 0 / .08);
	border-left: 5px solid var(--primary);
	transition: transform 0.3s
}

.region-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgb(0 0 0 / .1)
}

.region-card h3 {
	color: var(--secondary);
	font-size: 1.4rem;
	margin-bottom: .5rem
}

.region-card i {
	color: var(--accent);
	margin-right: 10px
}

.sub-regions {
	padding-left: 0;
	margin-top: 10px
}

.sub-regions li {
	list-style: none;
	margin-top: 5px;
	color: #555;
	font-size: .95rem;
	position: relative;
	padding-left: 15px
}

.sub-regions li::before {
	content: "\f00c";
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: var(--primary);
	font-size: .8em;
	position: absolute;
	left: 0;
	top: 3px
}

.faq-item {
	max-width: 900px;
	margin: 0 auto 1.5rem;
	text-align: left;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	position: relative;
	color: var(--secondary);
	transition: background-color 0.3s
}

.faq-question:hover {
	background-color: #f5f5f5
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 1.5rem;
	font-size: 1.5rem;
	transition: transform 0.3s;
	color: var(--primary)
}

.faq-item.active .faq-question {
	background-color: var(--primary);
	color: #000
}

.faq-item.active .faq-question::after {
	transform: rotate(45deg);
	color: #000
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
	background: #fafafa
}

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	font-size: 1.05rem
}

.faq-answer p a {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s
}

.faq-answer p a:hover {
	color: var(--secondary);
	text-decoration: underline
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
	gap: 2rem
}

.testimonial {
	background: var(--card-bg);
	padding: 2rem;
	border-radius: 15px;
	text-align: left;
	box-shadow: 0 4px 15px rgb(0 0 0 / .1);
	border-left: 5px solid var(--primary)
}

.testimonial p {
	font-style: italic;
	margin-bottom: 1rem;
	color: #555
}

.testimonial .author {
	font-weight: 700;
	color: var(--accent);
	text-align: right;
	border-top: 1px dashed #eee;
	padding-top: .5rem
}

.testimonial .rating {
	color: var(--primary);
	margin-bottom: .5rem;
	font-size: 1.2rem
}

#contact-detail {
	background: #fff
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
	text-align: left
}

.contact-info-box {
	background: #f9f9f9;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgb(0 0 0 / .05)
}

.contact-info-box h3 {
	color: var(--accent);
	margin-bottom: 1rem
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	font-size: 1.1rem
}

.contact-item i {
	font-size: 1.5rem;
	color: var(--primary);
	margin-right: 15px;
	width: 30px;
	text-align: center
}

.contact-item a {
	color: #333;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s
}

.contact-item a:hover {
	color: var(--primary)
}

.map-container {
	margin-top: 3rem;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgb(0 0 0 / .1)
}

.map-container iframe {
	width: 100%;
	height: 400px;
	border: 0
}

footer {
	background: #000;
	color: #aaa;
	padding: 2rem;
	text-align: center;
	font-size: 1rem
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	margin: 0 8px;
	font-size: .95rem;
	transition: color 0.3s
}

.footer-links a:hover {
	color: var(--primary)
}

@media (max-width: 768px) {
	header {
		padding:1rem
	}

	nav {
		display: none;
		flex-direction: column;
		width: 100%;
		background: rgb(0 0 0 / .98);
		position: absolute;
		top: 100%;
		left: 0;
		padding: 1rem 0
	}

	nav.is-active {
		display: flex
	}

	nav a {
		margin: 1rem 0;
		font-size: 1.2rem
	}

	.hamburger {
		display: block;
		z-index: 1001
	}

	.page-hero h1 {
		font-size: 2.2rem
	}

	section {
		padding: 3rem 1rem
	}

	.section-title {
		font-size: 2rem
	}

	.action-buttons a {
		width: 50px;
		height: 50px;
		font-size: 1.5rem
	}

	.call-btn {
		right: 80px
	}

	#scrollTopBtn {
		bottom: 80px;
		right: 15px;
		width: 40px;
		height: 40px;
		font-size: 1.2rem
	}

	#scrollTopBtn.show {
		opacity: 1;
		visibility: visible;
		transform: translateY(0)
	}
}

.blog-wrapper {
	padding: 70px 0
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px
}

.col-blog {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgb(0 0 0 / .08);
	transition: all .35s ease
}

.col-blog:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 55px rgb(0 0 0 / .18)
}

.col-blog a {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit
}

.blog-img img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform .4s ease
}

.col-blog:hover .blog-img img {
	transform: scale(1.07)
}
.makalebar img {
max-width: 100%;
}
.blog-content {
	padding: 18px
}

.blogbalsik {
	font-size: 1.15rem;
	font-weight: 800;
	margin-bottom: 8px;
	color: #111
}

.blogaciklama {
	font-size: .95rem;
	color: #555;
	line-height: 1.6
}

.pageler {
	margin-top: 60px;
	text-align: center
}

.pageler a,.pageler span {
	display: inline-block;
	padding: 10px 16px;
	margin: 0 4px;
	border-radius: 10px;
	background: #f1f5f9;
	color: #111;
	font-weight: 600
}

.pageler .current,.pageler a:hover {
	background: var(--accent);
	color: #fff
}

@media (max-width: 992px) {
	.blog-grid {
		grid-template-columns:repeat(2,1fr)
	}
}

@media (max-width: 576px) {
	.blog-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.testimonial {
		width: 90%;
	}

	.service-cards {
		margin-left: -15px;
		.blog-grid {
			grid-template-columns: 1fr
		}

		.blog-img img {
			height: 200px
		}
	}

	.yorum {
		padding: 10px;
		border-radius: 10px;
		margin-top: 10px
	}

	.yorum a {
		color: #001027
	}

	.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;
		border-radius: 10px;
		text-align: center;
		padding: 10px;
		border: none
	}

	.yorum input[type=submit]: hover {
		background:#001027;
		color: #fff
	}

	.yorum .comment-form-url {
		display: none
	}
}