
/* Ana Tema Renkleri */
:root {
	--primary-green: #10B981;
	--dark-green: #059669;
	--light-green: #A7F3D0;
	--light-gray: #f8f9fa;
	--text-dark: #212529;
	--text-light: #6c757d;
}

body {
	font-family: 'Poppins', sans-serif;
	color: var(--text-dark);
	padding-top: 80px; /* Navbar için boşluk */
}

/* Navigasyon */
.navbar {
	transition: all 0.4s ease;
	background-color: #fff !important;
	padding: 1rem 0;
}
.navbar.navbar-scrolled {
	padding: 0.5rem 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--primary-green) !important;
}
.nav-link {
	font-weight: 600;
	color: var(--text-dark) !important;
	transition: color 0.3s ease;
	margin: 0 0.5rem;
}
.nav-link:hover, .nav-link.active {
	color: var(--primary-green) !important;
}
.navbar .btn-primary {
	padding: 8px 24px;
	font-size: 0.9rem;
}

/* Ana Başlık (Hero) Alanı */
#home {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9)), url('../../../cdn/12980762_5096160.jpg') no-repeat center center;
	background-size: cover;
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	color: #fff;
}
#home h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
}

/* Genel Buton Stili */
.btn-primary {
	background-color: var(--primary-green);
	border-color: var(--primary-green);
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
}
.btn-primary:hover {
	background-color: var(--dark-green);
	border-color: var(--dark-green);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Bölüm Başlıkları */
.section-title {
	text-align: center;
	margin-bottom: 4rem;
	font-weight: 700;
	position: relative;
}
.section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.section-title p {
	max-width: 600px;
	margin: 0 auto;
	color: var(--text-light);
}

/* Bölümler Genel Stili */
section {
	padding: 100px 0;
}
#hakkimizda, #sss {
	background-color: var(--light-gray);
}

/* Fiyatlandırma Kartları */
.pricing-card {
	border: 1px solid #e9ecef;
	border-radius: 15px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.pricing-card:hover, .pricing-card.popular {
	transform: translateY(-10px);
	border-color: var(--primary-green);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.pricing-card.popular {
	border-width: 2px;
	position: relative;
	overflow: hidden;
}
.popular-badge {
	position: absolute;
	top: 20px;
	right: -45px;
	background-color: var(--primary-green);
	color: white;
	padding: 5px 50px;
	transform: rotate(45deg);
	font-size: 0.9rem;
	font-weight: 600;
}
.pricing-card h3 {
	font-weight: 600;
	color: var(--primary-green);
}
.price {
	font-size: 3.5rem;
	font-weight: 700;
}
.price sup { font-size: 1.5rem; }
.feature-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	text-align: left;
	flex-grow: 1;
}
.feature-list li {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}
.feature-list i {
	color: var(--primary-green);
	margin-right: 10px;
	width: 20px;
}

/* SSS Akordiyon */
.accordion-button:not(.collapsed) {
	background-color: var(--light-green);
	color: var(--dark-green);
	font-weight: 600;
}
.accordion-button:focus {
	box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}
.accordion-item {
	border-radius: 10px !important;
	margin-bottom: 1rem;
	overflow: hidden;
	border: 1px solid #e9ecef;
}

/* Proje Kartları */
.project-card {
	border: none;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	overflow: hidden;
}
.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.project-card img {
	width: 100%;
	height: 210px;
	aspect-ratio: 16/10;
}

/* Footer */
.footer {
	background-color: var(--text-dark);
	color: #adb5bd;
	padding: 60px 0;
}
.footer h5 {
	color: #fff;
	margin-bottom: 1.5rem;
}
.footer a {
	color: #adb5bd;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer a:hover {
	color: var(--primary-green);
}
.footer .list-unstyled li {
	margin-bottom: 0.5rem;
}
.footer .social-icons a {
	font-size: 1.5rem;
	margin-right: 15px;
}
.footer .bottom-bar {
	border-top: 1px solid #495057;
	padding-top: 20px;
	margin-top: 40px;
}

/* --- HİZMETLER BÖLÜMÜ --- */
#hizmetler {
	padding: 100px 0;
}

.service-card {
	border: none;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	overflow: hidden;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.4);
	border-color: #c5a47e;
}

.service-card .icon {
	font-size: 3.5rem;
	color: black;
	margin-bottom: 25px;
}

.service-card h3 {
	color: #1a1a1a;
	margin-bottom: 15px;
}


/* Müşteri Logoları */
.client-logo {
	max-height: 40px;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
}
.client-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.1);
}

/* Breadcrumb Stili */
.breadcrumb {
	justify-content: center;
	margin-bottom: 0.5rem;
}
.breadcrumb-item a {
	color: var(--primary-green);
	text-decoration: none;
}
.breadcrumb-item.active {
	color: var(--text-light);
}
.breadcrumb-item + .breadcrumb-item::before {
	color: var(--text-light);
}
.section-title.text-start .breadcrumb {
	justify-content: flex-start;
}