/*
Theme Name: Sezgin Bat Mühendislik
Theme URI: 
Author: Aura Creative Media
Author URI: 
Description: Sezgin Bat Mühendislik için özel olarak oluşturulmuş WordPress teması.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sezgin-bat-muhendislik
Tags: custom, responsive, modern
*/

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

body.menu-open {
	overflow: hidden;
}

#page {
	position: relative;
	z-index: 10;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.pt-4 {
	padding-top: 4rem;
}

/* Top Bar */
.top-bar {
	background-color: #1a1a1a;
	color: #fff;
	padding: 8px 0;
	font-size: 14px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	width: 100%;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-left {
	display: flex;
	gap: 20px;
	align-items: center;
}

.top-bar-right {
	display: flex;
	gap: 15px;
	align-items: center;
}

.top-bar-link {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s ease;
}

.top-bar-link:hover {
	color: #BC8D3F;
}

.top-bar-icon {
	font-size: 16px;
}

.top-bar-social {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.top-bar-social:hover {
	color: #BC8D3F;
	transform: scale(1.1);
}

/* Header */
.site-header {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	z-index: 150;
	width: 100%;
	padding: 20px;
	overflow: visible;
}

.site-header.sticky {
	position: fixed;
}

/* Hide background when header is sticky (scrolled) */
.site-header.sticky::before {
	display: none;
}

/* Header background image */
.site-header::before {
	content: "";
	position: absolute;
	inset: -40px 0 0 0;
	background-image: url('assets/images/nav-back.png');
	background-size: cover;
	background-position: unset;
	background-repeat: no-repeat;
	z-index: -1;
	pointer-events: none;
}

/* Hide background on homepage */
body.home .site-header::before,
body.front-page .site-header::before {
	display: none;
}

.site-header .site-title a {
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-branding img.custom-logo {
	max-width: 170px;
	max-height: 60px;
	width: auto;
	height: auto;
}

.site-header .container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 20px;
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-divider {
	width: 1px;
	height: 30px;
	background-color: rgba(255, 255, 255, 0.3);
	flex-shrink: 0;
}

.main-navigation {
	margin-left: 0;
}

.site-title {
	font-size: 24px;
	font-weight: bold;
	margin: 0;
}

.site-title a {
	text-decoration: none;
	color: #333;
}

/* Navigation */
.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.main-navigation > ul {
	display: flex;
	flex-direction: row;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	transition: color 0.3s ease;
	display: block;
	padding: 8px 0;
	position: relative;
	overflow: hidden;
}

/* Ana menü öğeleri için alt çizgi animasyonu (soldan sağa) */
.main-navigation ul.menu > li > a::before,
.main-navigation #primary-menu > li > a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #ddd;
	transition: width 0.4s ease;
	z-index: 10;
}

.main-navigation ul.menu > li:hover > a::before,
.main-navigation #primary-menu > li:hover > a::before {
	width: 100%;
}

/* Alt menüsü olan öğeler için aşağı ok ikonu */
.main-navigation li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #fff;
	margin-left: 8px;
	vertical-align: middle;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 3;
}

.main-navigation li.menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

/* Alt Menüler (Dropdown) */
.main-navigation ul.sub-menu,
.main-navigation ul.children {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	min-width: 200px;
	padding: 10px 0;
	margin-top: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 0;
	z-index: 999;
}

.main-navigation li:hover > ul.sub-menu,
.main-navigation li:hover > ul.children {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation ul.sub-menu li,
.main-navigation ul.children li {
	position: relative;
	width: 100%;
}

.main-navigation ul.sub-menu a,
.main-navigation ul.children a {
	color: #333;
	font-weight: 600;
	font-size: 14px;
	padding: 12px 20px;
	text-shadow: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-navigation ul.sub-menu a:hover,
.main-navigation ul.children a:hover {
	color: #BC8D3F;
	background-color: rgba(188, 141, 63, 0.1);
}

.main-navigation ul.sub-menu li:last-child a,
.main-navigation ul.children li:last-child a {
	border-bottom: none;
}

/* İç içe alt menüler (3. seviye) */
.main-navigation ul.sub-menu ul.sub-menu,
.main-navigation ul.children ul.children {
	top: 0;
	left: 100%;
	margin-top: 0;
	margin-left: 10px;
}

.main-navigation ul.sub-menu li:hover > ul.sub-menu,
.main-navigation ul.children li:hover > ul.children {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.yali-city-button {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	background-color: transparent;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	margin-left: auto;
	transition: all 0.3s ease;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.yali-city-button:hover {
	background-color: #fff;
	color: #333;
	text-shadow: none;
}

.yali-city-button:hover .yali-city-icon {
	stroke: #333;
}

.yali-city-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	transition: stroke 0.3s ease;
}

/* Blog Archive
   ========================================================================== */

.blog-archive {
	padding: 60px 0;
}

.archive-header {
	margin-bottom: 32px;
	text-align: left;
}

.archive-title {
	font-size: 32px;
	line-height: 1.2;
	margin: 0 0 8px;
	color: #1b1b1b;
}

.archive-description {
	max-width: 680px;
	color: #666;
	font-size: 15px;
}

.blog-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.blog-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 55px rgba(0, 0, 0, 0.09);
}

.blog-card-thumb img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.blog-card-content {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
}

.blog-card .entry-title {
	font-size: 20px;
	margin: 0;
}

.blog-card .entry-title a {
	color: #1b1b1b;
	text-decoration: none;
}

.blog-card .entry-title a:hover {
	color: #BC8D3F;
}

.blog-card .entry-meta {
	font-size: 13px;
	color: #888;
	display: flex;
	gap: 10px;
}

.blog-card .entry-summary {
	font-size: 14px;
	color: #555;
	margin-top: 4px;
}

.blog-read-more {
	margin-top: auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid #BC8D3F;
	color: #BC8D3F;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.blog-read-more:hover {
	background-color: #BC8D3F;
	color: #fff;
}

.navigation.pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.navigation.pagination .nav-links {
	display: inline-flex;
	gap: 6px;
	align-items: center;
}

.navigation.pagination a,
.navigation.pagination span {
	min-width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid #ddd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: #555;
	text-decoration: none;
	padding: 0 10px;
}

.navigation.pagination a:hover {
	border-color: #BC8D3F;
	color: #BC8D3F;
}

.navigation.pagination .current {
	background-color: #BC8D3F;
	border-color: #BC8D3F;
	color: #fff;
}

/* İletişim Sayfası
   ========================================================================== */

.iletisim-page .iletisim-form-section {
	padding: 130px 0 80px;
}

.iletisim-page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
	gap: 40px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.iletisim-page-title {
	font-size: 32px;
	margin-bottom: 24px;
	color: #1b1b1b;
}

.iletisim-page-intro {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 26px;
	max-width: 640px;
}

.iletisim-page-info h2 {
	font-size: 18px;
	margin-bottom: 8px;
	color: #1b1b1b;
}

.iletisim-page-block {
	margin-bottom: 20px;
}

.iletisim-page-block p {
	margin: 0 0 6px;
	color: #555;
}

.iletisim-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 10px;
}

.iletisim-info-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f0e2c8;
	color: #BC8D3F;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.iletisim-info-icon svg {
	width: 24px;
	height: 24px;
}

.iletisim-info-text p {
	margin: 0;
}

.iletisim-page-block a {
	color: #BC8D3F;
	text-decoration: none;
}

.iletisim-page-block a:hover {
	text-decoration: underline;
}

.iletisim-page-form-wrapper {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
	padding: 24px 26px 26px;
}

.iletisim-page-map h2 {
	font-size: 18px;
	margin-bottom: 12px;
	color: #1b1b1b;
}

.iletisim-map-embed iframe {
	width: 100%;
	max-width: 100%;
	border-radius: 16px;
}

@media (max-width: 1024px) {
	.iletisim-page-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.iletisim-page .iletisim-form-section {
		padding: 90px 0 60px;
	}

	.iletisim-page-form-wrapper {
		padding: 20px;
	}
}

/* Menu Toggle Button */
.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 201;
	position: relative;
}

.menu-toggle-icon {
	display: flex;
	flex-direction: column;
	width: 24px;
	height: 18px;
	justify-content: space-between;
}

.menu-toggle-icon span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	z-index: 300;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	overflow-y: auto;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu {
	position: relative;
	width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	padding: 80px 20px 40px;
	text-align: center;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.mobile-site-branding {
	display: flex;
	align-items: center;
	flex: 1;
}

.mobile-site-branding img {
	max-height: 50px;
	width: auto;
}

.mobile-site-title {
	margin: 0;
	font-size: 24px;
}

.mobile-site-title a {
	color: #fff;
	text-decoration: none;
}

.mobile-menu-close {
	position: relative;
	background: transparent;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 301;
	flex-shrink: 0;
}

.mobile-menu-close span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	transition: all 0.3s ease;
}

.mobile-menu-close span:nth-child(1) {
	transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
	transform: rotate(-45deg);
}

.mobile-navigation {
	flex: 1;
	margin-bottom: 40px;
}

.mobile-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-navigation li {
	margin-bottom: 10px;
}

.mobile-navigation a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-navigation a:hover {
	color: #BC8D3F;
	padding-left: 15px;
}

/* Mobile Navigation Submenu */
.mobile-navigation ul.sub-menu,
.mobile-navigation ul.children {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
	padding: 0;
	margin: 0;
}

.mobile-navigation li.menu-item-has-children > a {
	position: relative;
	padding-right: 30px;
}

.mobile-navigation li.menu-item-has-children > a::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 300;
	transition: transform 0.3s ease;
}

.mobile-navigation li.menu-item-has-children.active > a::after {
	transform: translateY(-50%) rotate(45deg);
}

.mobile-navigation li.menu-item-has-children.active > ul.sub-menu,
.mobile-navigation li.menu-item-has-children.active > ul.children {
	max-height: 1000px;
	opacity: 1;
	padding: 10px 0 0 0;
}

.mobile-navigation ul.sub-menu li,
.mobile-navigation ul.children li {
	margin-bottom: 5px;
}

.mobile-navigation ul.sub-menu a,
.mobile-navigation ul.children a {
	font-size: 16px;
	padding: 8px 0 8px 20px;
	color: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-navigation ul.sub-menu a:hover,
.mobile-navigation ul.children a:hover {
	color: #BC8D3F;
	padding-left: 30px;
}

.mobile-menu-footer {
	margin-top: auto;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-top-bar-links {
	display: flex;
	flex-direction: row;
	gap: 15px;
	margin-bottom: 25px;
	flex-wrap: wrap;
}

.mobile-top-bar-link {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	padding: 8px 0;
	transition: color 0.3s ease;
	flex: 1;
	min-width: 140px;
}

.mobile-top-bar-link:hover {
	color: #BC8D3F;
}

.mobile-menu-copyright {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.mobile-menu-copyright p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	margin: 0;
	line-height: 1.5;
}

.mobile-top-bar-social {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.mobile-top-bar-social-link {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.mobile-top-bar-social-link:hover {
	color: #BC8D3F;
	border-color: #BC8D3F;
	transform: scale(1.1);
}

/* Hero Tagline Section */
.hero-tagline-section {
	padding: 60px 0;
	background-color: #fff;
	text-align: center;
}

.hero-tagline-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.hero-testimonials-stack {
	display: flex;
	align-items: center;
	position: relative;
	flex-shrink: 0;
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid #fff;
	overflow: hidden;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	background-color: #fff;
}

.testimonial-avatar:not(:first-child) {
	margin-left: -30px;
}

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

.testimonial-count {
	margin-left: 15px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.2;
}

.testimonial-count-number {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.testimonial-count-text {
	font-size: 12px;
	color: #666;
	font-weight: 400;
}

.hero-tagline {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	margin: 0;
	line-height: 1.4;
	flex: 1;
}

.hero-tagline::after {
	content: '|';
	animation: blink 1s infinite;
	margin-left: 5px;
	color: #BC8D3F;
}

@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

/* Referans Logoları Section */
.referans-logolar-section {
	padding: 60px 0;
	background-color: #fff;
}

.referans-logolar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 40px;
	align-items: center;
	justify-items: center;
}

.referans-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	filter: grayscale(100%);
	opacity: 0.7;
}

.referans-logo-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	filter: grayscale(0%);
	opacity: 1;
}

.referans-logo-item img {
	max-width: 100%;
	height: auto;
	max-height: 80px;
	object-fit: contain;
}

.referans-logo-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/* Referans Carousel (Ana Sayfa ve Hakkımızda Sayfası) */
.referans-carousel-section {
	padding: 30px 0;
	background-color: #fff;
	overflow: hidden;
	margin-top: 0;
}

.referans-carousel-wrapper {
	overflow: hidden;
	position: relative;
}

.referans-carousel-track {
	display: flex;
	animation: scroll-referans 30s linear infinite;
	gap: 40px;
	will-change: transform;
}

.referans-carousel-wrapper:hover .referans-carousel-track {
	animation-play-state: paused;
}

.referans-carousel-item {
	flex-shrink: 0;
	width: 180px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	filter: grayscale(100%);
	opacity: 0.7;
}

.referans-carousel-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	filter: grayscale(0%);
	opacity: 1;
}

.referans-carousel-item img {
	max-width: 100%;
	max-height: 80px;
	object-fit: contain;
}

.referans-carousel-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

@keyframes scroll-referans {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Hakkımızda Özet Bölümü */
.hakkimizda-ozet-section {
	background-color: #f5f5f5;
	background-size: 33.333333% auto;
	background-position: left center;
	background-repeat: no-repeat;
	padding: 80px 0;
	position: relative;
	min-height: 500px;
}

.hakkimizda-ozet-wrapper {
	display: flex;
	gap: 40px;
	align-items: center;
	position: relative;
}

.hakkimizda-ozet-right {
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
	margin-left: auto;
	/* 8/12 = 66.667% */
}

.hakkimizda-ozet-title {
	line-height: 1.125;
	font-weight: 600;
	background: #656565;
	color: #fff;
	padding: 4px 6px 1px;
	margin-bottom: 26px;
	font-size: 24px;
	display: inline-block;
}

.hakkimizda-ozet-text {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	margin: 0 0 30px 0;
}

.hakkimizda-ozet-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hakkimizda-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background-color: #fff;
	color: #333;
	border: 2px solid #BC8D3F;
	border-radius: 4px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.hakkimizda-button:hover {
	background-color: #BC8D3F;
	color: #fff;
	border-color: #BC8D3F;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(188, 141, 63, 0.3);
}

.hakkimizda-button-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	stroke: currentColor;
}

/* Kalite Standartlarımız Bölümü */
.kalite-standartlari-section {
	background-color: #fff;
	padding: 80px 0;
	position: relative;
	z-index: 1;
}

.kalite-standartlari-title {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 40px;
	text-align: center;
}

.kalite-standartlari-content {
	max-width: 900px;
	margin: 0 auto 50px auto;
}

.kalite-standartlari-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 20px;
}

.kalite-standartlari-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.kalite-logo-item {
	flex: 0 0 auto;
	max-width: 200px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	transition: transform 0.3s ease;
}

.kalite-logo-item:hover {
	transform: translateY(-5px);
}

.kalite-logo-item img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* Gelecek Bölümü */
.gelecek-section {
	position: relative;
	width: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 80px 0;
	z-index: 2;
}

.gelecek-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.gelecek-content {
	position: relative;
	z-index: 2;
	max-width: 600px;
	margin-left: auto;
	margin-right: 20px;
	padding: 80px 20px;
	text-align: right;
}

.gelecek-title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.3;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gelecek-text {
	font-size: 18px;
	line-height: 1.6;
	color: #fff;
	margin: 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hizmetlerimiz Overlay Bölümü
   ========================================================================== */

.hizmetlerimiz-overlay-section {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 90px 0;
	color: #fff;
}

.hizmetlerimiz-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.hizmetlerimiz-overlay-content {
	position: relative;
	z-index: 1;
	max-width: 560px;
	display: block;
	text-decoration: none;
	color: inherit;
}

.hizmetlerimiz-overlay-title {
	font-size: 32px;
	margin-bottom: 20px;
	font-weight: 700;
}

.hizmetlerimiz-overlay-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.hizmetlerimiz-overlay-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
}

.hizmetlerimiz-overlay-list .icon {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #F2C15B;
	flex-shrink: 0;
}

.hizmetlerimiz-overlay-list .icon svg {
	width: 20px;
	height: 20px;
}

.hizmetlerimiz-overlay-list .text {
	display: inline-block;
}

@media (max-width: 768px) {
	.hizmetlerimiz-overlay-section {
		padding: 60px 0;
	}

	.hizmetlerimiz-overlay-content {
		max-width: 100%;
	}
}

/* İletişim Formu Bölümü */
.iletisim-form-section {
	background-color: #f5f5f5;
	padding: 80px 0;
}

.iletisim-form {
	max-width: 900px;
	margin: 0 auto;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	flex: 1;
}

.form-group-half {
	flex: 0 0 calc(50% - 10px);
}

.form-group-full {
	flex: 0 0 100%;
}

.iletisim-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.iletisim-form input[type="text"],
.iletisim-form input[type="tel"],
.iletisim-form input[type="email"],
.iletisim-form select,
.iletisim-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
	font-family: 'Josefin Sans', sans-serif;
	color: #333;
	background-color: #fff;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.iletisim-form input[type="text"]:focus,
.iletisim-form input[type="tel"]:focus,
.iletisim-form input[type="email"]:focus,
.iletisim-form select:focus,
.iletisim-form textarea:focus {
	outline: none;
	border-color: #BC8D3F;
	box-shadow: 0 0 0 3px rgba(188, 141, 63, 0.1);
}

.iletisim-form select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 40px;
}

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

.form-submit-btn {
	width: 100%;
	padding: 15px 30px;
	background-color: #BC8D3F;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Josefin Sans', sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-submit-btn:hover {
	background-color: #a67a35;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(188, 141, 63, 0.3);
}

.form-submit-btn:active {
	transform: translateY(0);
}

/* Süreç Adımları Bölümü */
.surec-adimlari-section {
	background-color: #fff;
	padding: 80px 0;
	position: relative;
	z-index: 3;
	margin-bottom: 0;
}

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

.surec-adimlari-main-title {
	font-size: 42px;
	font-weight: 700;
	color: #2c2c2c;
	margin-bottom: 20px;
	line-height: 1.2;
}

.surec-adimlari-main-description {
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
}

.surec-adimlari-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.surec-adim-item {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 40px 30px;
	text-align: center;
	background-color: #fff;
	transition: all 0.4s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.surec-adim-item:hover {
	background-color: #333;
	border-color: #333;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.surec-adim-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	color: #666;
	transition: all 0.4s ease;
}

.surec-adim-item:hover .surec-adim-icon {
	color: #fff;
}

.surec-adim-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.4s ease;
}

.surec-adim-item:hover .surec-adim-title {
	color: #fff;
}

.surec-adim-text {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
	margin: 0;
	transition: all 0.4s ease;
}

.surec-adim-item:hover .surec-adim-text {
	color: #fff;
}

/* Content */
.site-content {
	padding: 40px 0;
	min-height: 60vh;
}

/* Hakkımızda Sayfası */
.hakkimizda-page {
	padding: 80px 0;
}

.hakkimizda-content {
	font-size: 18px;
	line-height: 1.8;
	color: #444;
	max-width: 900px;
	margin: 0 auto;
}

.hakkimizda-content p {
	margin-bottom: 25px;
}

.hakkimizda-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin: 50px 0 20px 0;
	padding-bottom: 15px;
	border-bottom: 3px solid #BC8D3F;
}

.hakkimizda-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin: 30px 0 15px 0;
}

.hakkimizda-content strong {
	color: #BC8D3F;
	font-weight: 600;
}

.hakkimizda-content ul,
.hakkimizda-content ol {
	margin: 20px 0;
	padding-left: 30px;
}

.hakkimizda-content li {
	margin-bottom: 10px;
}

/* Footer Blog Bölümü - Parallax Efekti */
.footer-blog-section {
	background-color: #2c2c2c;
	padding: 80px 0 60px 0;
	color: #fff;
	position: relative;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1;
	border-bottom: 1px solid #525252;
}

.footer-blog-wrapper {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.footer-blog-title-vertical {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
	white-space: nowrap;
	flex-shrink: 0;
}

.footer-blog-content-wrapper {
	flex: 1;
}

.footer-blog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	align-items: center;
}

.footer-blog-item {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.footer-blog-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
}

.footer-blog-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.footer-blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.footer-blog-item:hover .footer-blog-image img {
	transform: scale(1.05);
}

.footer-blog-content {
	padding: 20px;
}

.footer-blog-item-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.4;
}

.footer-blog-item-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-blog-item-title a:hover {
	color: #BC8D3F;
}

.footer-blog-meta {
	font-size: 13px;
	color: #999;
}

.footer-blog-empty {
	text-align: center;
	color: #999;
	padding: 40px 0;
	grid-column: 1 / -1;
}

.footer-blog-view-all {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 100%;
	grid-column: 4;
}

.footer-blog-view-all-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #BC8D3F;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 20px;
}

.footer-blog-view-all-link:hover {
	color: #fff;
	transform: translateX(5px);
}

.footer-blog-view-all-link svg {
	width: 32px;
	height: 32px;
	transition: transform 0.3s ease;
}

.footer-blog-view-all-link:hover svg {
	transform: translateX(5px);
}

.footer-blog-view-all-link span {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* İletişim Formu Bölümü */
.iletisim-form-section {
	background-color: #f5f5f5;
	padding: 100px 0;
	position: relative;
	z-index: 5;
	margin-bottom: 0;
	overflow: hidden;
}

.iletisim-form-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 40px;
	text-align: center;
}

/* Footer - Sticky Reveal Efekti */
.site-footer {
	background-color: #2c2c2c;
	color: #fff;
	padding: 80px 0 30px 0;
	position: relative;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1;
	margin-top: 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-logo-img img {
	max-width: 200px;
	height: auto;
	margin-bottom: 20px;
}

.footer-site-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.footer-contact-info {
	font-size: 14px;
	line-height: 1.8;
	color: #ccc;
}

.footer-contact-info p {
	margin-bottom: 10px;
}

.footer-contact-info a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact-info a:hover {
	color: #BC8D3F;
}

.footer-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-menu-list,
.footer-projects-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu-list li,
.footer-projects-list li {
	margin-bottom: 12px;
}

.footer-menu-list a,
.footer-projects-list a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-menu-list a:hover,
.footer-projects-list a:hover {
	color: #BC8D3F;
}

.footer-phone {
	font-size: 28px;
	font-weight: 700;
	color: #BC8D3F;
	margin-bottom: 25px;
	line-height: 1.2;
}

.footer-phone a {
	color: #BC8D3F;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-phone a:hover {
	color: #fff;
}

.footer-social-title {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-social-icons {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-instagram {
	color: #E4405F;
	background-color: rgba(228, 64, 95, 0.1);
}

.social-instagram:hover {
	background-color: #E4405F;
	color: #fff;
	transform: translateY(-3px);
}

.social-linkedin {
	color: #0077B5;
	background-color: rgba(0, 119, 181, 0.1);
}

.social-linkedin:hover {
	background-color: #0077B5;
	color: #fff;
	transform: translateY(-3px);
}

.social-whatsapp {
	color: #25D366;
	background-color: rgba(37, 211, 102, 0.1);
}

.social-whatsapp:hover {
	background-color: #25D366;
	color: #fff;
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
	font-size: 13px;
	color: #999;
}

.footer-developer-link {
	color: #ff0000;
	text-decoration: none;
}

.footer-developer-link:hover {
	text-decoration: underline;
}

/* Hero Slider */
.hero-slider {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	z-index: 100;
	margin-top: 0;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
}

.hero-slide.active {
	opacity: 1;
	z-index: 2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.hero-counter-inline {
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
	font-family: 'Courier New', monospace;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	margin-right: 12px;
}

.counter-current {
	font-size: 24px;
	line-height: 1;
}

.counter-separator {
	font-size: 18px;
	opacity: 0.7;
}

.counter-total {
	font-size: 18px;
	opacity: 0.7;
}

.hero-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 40px 0;
	background: transparent;
}

.hero-bottom .container {
	position: relative;
	z-index: 3;
}

.hero-title {
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	margin: 0 0 15px 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
}

.hero-description {
	font-size: 18px;
	color: #fff;
	margin: 0 0 20px 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	line-height: 1.6;
	max-width: 800px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
	z-index: 11;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;
	background-color: #BC8D3F;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.hero-button:hover {
	background-color: #a67a35;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-button-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background-color: transparent;
	color: #fff;
	border: 2px solid #BC8D3F;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.hero-button-all:hover {
	background-color: rgba(188, 141, 63, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-button-all-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.hero-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 70%, #000 100%);
	z-index: 1;
	pointer-events: none;
}

/* Hero Stats */
.hero-stats {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.hero-stat-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 20px;
	border-left: 3px solid #fff;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-radius: 0;
	transition: transform 0.3s ease, border-color 0.3s ease;
	background: transparent;
}

.hero-stat-item:hover {
	transform: translateX(-5px);
	border-color: #BC8D3F;
}

.hero-stat-number {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	font-family: 'Courier New', monospace;
	white-space: nowrap;
	transition: color 0.3s ease;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-stat-item:hover .hero-stat-number {
	color: #BC8D3F;
	text-shadow: 0 0 10px rgba(188, 141, 63, 0.8), 0 0 20px rgba(188, 141, 63, 0.5);
}

.hero-stat-label {
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	white-space: nowrap;
}

/* Proje Lightbox */
.proje-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.proje-lightbox-overlay.active {
	opacity: 1;
	visibility: visible;
}

.proje-lightbox-content {
	position: relative;
	max-width: 75vw;
	max-height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.proje-lightbox-content img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: auto;
	display: block;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	border-radius: 8px;
	user-select: none;
	-webkit-user-select: none;
}

.proje-lightbox-prev,
.proje-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 10;
	line-height: 1;
	padding: 0;
}

.proje-lightbox-prev {
	left: -25px;
}

.proje-lightbox-next {
	right: -25px;
}

.proje-lightbox-prev:hover,
.proje-lightbox-next:hover {
	background: #BC8D3F;
	transform: translateY(-50%) scale(1.1);
}

.proje-lightbox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 10;
}

.proje-lightbox-close:hover {
	background: #BC8D3F;
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.proje-lightbox-content {
		max-width: 85vw;
		max-height: 80vh;
	}
	
	.proje-lightbox-prev,
	.proje-lightbox-next {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
	
	.proje-lightbox-prev {
		left: 10px;
	}
	
	.proje-lightbox-next {
		right: 10px;
	}
}
.footer-address-mobile, .footer-mobile-phone, .footer-contact-mobile-left, .footer-contact-mobile-right {
	display:none;
}

/* Responsive */
@media (max-width: 1024px) {
	.main-navigation {
		display: none;
	}
	
	.menu-toggle {
		display: block;
	}
	
	.yali-city-button {
		display: none;
	}
	
	.hero-stats {
		display: none;
	}
}

@media (max-width: 768px) {
	.site-header {
		top: 0;
	}
	
	.site-header::before {
		display: none;
	}
	
	.site-header .container {
		position: relative;
	}
	
	.main-navigation {
		display: none;
	}
	
	.menu-toggle {
		display: block;
	}
	
	.top-bar {
		display: none;
	}
	
	.hero-slider {
		height: 80vh;
		min-height: 500px;
	}
	
	.hero-counter-inline {
		font-size: 14px;
		margin-right: 10px;
	}
	
	.counter-current {
		font-size: 18px;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 12px;
	}
	
	.hero-button,
	.hero-button-all {
		width: 100%;
		justify-content: center;
		padding: 10px 20px;
		font-size: 14px;
	}
	
	.counter-separator,
	.counter-total {
		font-size: 14px;
	}
	
	
	.hero-title {
		font-size: 32px;
	}
	
	.hero-description {
		font-size: 16px;
	}
	
	.hero-bottom {
		padding: 30px 0;
	}
	
	.hero-gradient {
		height: 150px;
	}
	
	.hero-tagline-wrapper {
		flex-direction: column;
		gap: 25px;
	}
	
	.testimonial-avatar {
		width: 55px;
		height: 55px;
	}
	
	.testimonial-count-number {
		font-size: 17px;
	}
	
	.testimonial-count-text {
		font-size: 11px;
	}
	
	.hero-tagline {
		font-size: 24px;
	}
	
	.referans-logolar-section {
		padding: 40px 0;
	}
	
	.referans-logolar-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 25px;
	}
	
	.referans-logo-item {
		padding: 15px;
	}
	
	.referans-logo-item img {
		max-height: 60px;
	}
	
	.hakkimizda-content {
		font-size: 16px;
	}
	
	.hakkimizda-content h2 {
		font-size: 28px;
	}
	
	.hakkimizda-content h3 {
		font-size: 22px;
	}
	
	.referans-carousel-section {
		padding: 20px 0;
		margin-top: 0;
	}
	
	.referans-carousel-item {
		width: 150px;
		height: 100px;
		padding: 15px;
	}
	
	.referans-carousel-item img {
		max-height: 70px;
	}
	
	.hakkimizda-ozet-section {
		padding: 50px 0;
	}
	
	.hakkimizda-ozet-section {
		background-size: cover;
		background-position: left center;
	}
	
	.hakkimizda-ozet-wrapper {
		flex-direction: column;
		gap: 30px;
	}
	
	.hakkimizda-ozet-right {
		flex: 0 0 100%;
		max-width: 100%;
		margin-left: 0;
	}
	
	.hakkimizda-ozet-title {
		font-size: 20px;
	}
	
	.hakkimizda-ozet-text {
		font-size: 15px;
		margin-bottom: 25px;
	}
	
	.hakkimizda-ozet-buttons {
		flex-direction: column;
		gap: 12px;
	}
	
	.hakkimizda-button {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
	}
	
	.kalite-standartlari-section {
		padding: 50px 0;
	}
	
	.kalite-standartlari-title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	
	.kalite-standartlari-content {
		margin-bottom: 40px;
	}
	
	.kalite-standartlari-content p {
		font-size: 15px;
	}
	
	.kalite-standartlari-logos {
		gap: 30px;
	}
	
	.kalite-logo-item {
		max-width: 180px;
		padding: 15px;
	}
	
	.gelecek-section {
		min-height: 400px;
		padding: 60px 0;
	}
	
	.gelecek-content {
		max-width: 100%;
		text-align: center;
		margin-left: 0;
	}
	
	.gelecek-title {
		font-size: 28px;
	}
	
	.gelecek-text {
		font-size: 16px;
	}
	
	.gelecek-content {
		padding-right: 20px;
		padding-left: 20px;
	}
	
	.iletisim-form-section {
		padding: 60px 0;
	}
	
	.form-row {
		flex-direction: column;
		gap: 0;
	}
	
	.form-group-half {
		flex: 0 0 100%;
		margin-bottom: 20px;
	}
	
	.footer-blog-wrapper {
		flex-direction: column;
		gap: 30px;
	}
	
	.footer-blog-title-vertical {
		writing-mode: horizontal-tb;
		transform: none;
		font-size: 28px;
		text-align: center;
		margin-bottom: 20px;
	}
	
	.footer-blog-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
	
	.footer-blog-view-all {
		grid-column: 3;
	}
	
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	
	.footer-phone {
		font-size: 24px;
	}
	
	.surec-adimlari-section {
		padding: 60px 0;
	}
	
	.surec-adimlari-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.surec-adim-item {
		padding: 30px 20px;
	}
	
	.surec-adim-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}
	
	.surec-adim-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.surec-adim-text {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.hero-slider {
		height: 70vh;
		min-height: 400px;
	}
	
	.hero-counter-inline {
		font-size: 12px;
		margin-right: 8px;
	}
	
	.counter-current {
		font-size: 16px;
	}
	
	.counter-separator,
	.counter-total {
		font-size: 12px;
	}
	
	.hero-stats {
		display: none;
	}
	
	
	.hero-title {
		font-size: 24px;
	}
	
	.hero-description {
		font-size: 14px;
	}
	
	.hero-tagline-section {
		padding: 30px 0;
	}
	
	.hero-tagline-wrapper {
		flex-direction: column;
		gap: 20px;
	}
	
	.hero-testimonials-stack {
		justify-content: center;
	}
	
	.testimonial-avatar {
		width: 50px;
		height: 50px;
	}
	
	.testimonial-avatar:not(:first-child) {
		margin-left: -15px;
	}
	
	.testimonial-count {
		margin-left: 10px;
	}
	
	.testimonial-count-number {
		font-size: 16px;
	}
	
	.testimonial-count-text {
		font-size: 11px;
	}
	
	.hero-tagline {
		font-size: 18px;
	}
	
	.referans-logolar-section {
		padding: 30px 0;
	}
	
	.referans-logolar-grid {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 15px;
	}
	
	.referans-logo-item {
		padding: 10px;
	}
	
	.referans-logo-item img {
		max-height: 45px;
	}
	
	.hakkimizda-content {
		font-size: 15px;
	}
	
	.hakkimizda-content h2 {
		font-size: 24px;
	}
	
	.hakkimizda-content h3 {
		font-size: 20px;
	}
	
	.referans-carousel-section {
		padding: 15px 0;
		margin-top: 0;
	}
	
	.referans-carousel-item {
		width: 120px;
		height: 80px;
		padding: 12px;
	}
	
	.referans-carousel-item img {
		max-height: 60px;
	}
	
	.hakkimizda-ozet-section {
		padding: 40px 0;
	}
	
	.hakkimizda-ozet-section {
		background-size: cover;
		background-position: left center;
	}
	
	.hakkimizda-ozet-wrapper {
		flex-direction: column;
		gap: 25px;
	}
	
	.hakkimizda-ozet-right {
		flex: 0 0 100%;
		max-width: 100%;
		margin-left: 0;
	}
	
	.hakkimizda-ozet-title {
		font-size: 18px;
		margin-bottom: 20px;
	}
	
	.hakkimizda-ozet-text {
		font-size: 14px;
		margin-bottom: 20px;
	}
	
	.hakkimizda-ozet-buttons {
		flex-direction: column;
		gap: 10px;
	}
	
	.hakkimizda-button {
		width: 100%;
		justify-content: center;
		padding: 12px 18px;
		font-size: 14px;
	}
	
	.kalite-standartlari-section {
		padding: 40px 0;
	}
	
	.kalite-standartlari-title {
		font-size: 24px;
		margin-bottom: 25px;
	}
	
	.kalite-standartlari-content {
		margin-bottom: 30px;
	}
	
	.kalite-standartlari-content p {
		font-size: 14px;
		margin-bottom: 15px;
	}
	
	.kalite-standartlari-logos {
		gap: 20px;
		flex-direction: column;
	}
	
	.kalite-logo-item {
		max-width: 150px;
		padding: 12px;
	}
	
	.gelecek-section {
		min-height: 350px;
		padding: 40px 0;
	}
	
	.gelecek-content {
		max-width: 100%;
		text-align: center;
		margin-left: 0;
		padding: 0 15px;
	}
	
	.gelecek-title {
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	.gelecek-text {
		font-size: 14px;
	}
	
	.gelecek-content {
		padding-right: 15px;
		padding-left: 15px;
	}
	
	.iletisim-form-section {
		padding: 40px 0;
	}
	
	.iletisim-form {
		padding: 0 15px;
	}
	
	.form-row {
		flex-direction: column;
		gap: 0;
	}
	
	.form-group-half {
		flex: 0 0 100%;
		margin-bottom: 20px;
	}
	
	.form-submit-btn {
		padding: 14px 25px;
		font-size: 15px;
	}
	
	.footer-blog-section {
		padding: 60px 0 40px 0;
	}
	
	.footer-blog-wrapper {
		flex-direction: column;
		gap: 25px;
	}
	
	.footer-blog-title-vertical {
		writing-mode: horizontal-tb;
		transform: none;
		font-size: 24px;
		text-align: center;
		margin-bottom: 20px;
	}
	
	.footer-blog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.footer-blog-image {
		height: 180px;
	}
	
	.footer-blog-view-all {
		grid-column: 2;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-phone {
		font-size: 22px;
	}
	
	.footer-social-icons {
		justify-content: center;
	}
	
	.surec-adimlari-section {
		padding: 40px 0;
	}
	
	.surec-adimlari-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.surec-adim-item {
		padding: 30px 20px;
	}
	
	.surec-adim-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}
	
	.surec-adim-icon svg {
		width: 30px;
		height: 30px;
	}
	
	.surec-adim-title {
		font-size: 15px;
		margin-bottom: 10px;
	}
	
	.surec-adim-text {
		font-size: 13px;
	}
	
	/* Mobile Footer Tasarımı */
	.footer-blog-section {
		display: none;
	}
	
	.site-footer {
		padding: 40px 20px 20px;
	}
	
	.footer-content {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin-bottom: 0;
	}
	
	.footer-column {
		display: none;
	}
	
	.footer-column.footer-contact {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	
	
	/* Desktop'ta mobil footer elementlerini gizle */
	.footer-contact-mobile-left,
	.footer-contact-mobile-right,
	.footer-address-mobile {
		display: none;
	}
	
	/* Desktop'ta desktop footer elementleri görünür */
	.footer-column.footer-contact > .footer-title,
	.footer-column.footer-contact > .footer-phone,
	.footer-column.footer-contact > .footer-social-title {
		display: block;
	}
	
	.footer-column.footer-contact > .footer-social-icons {
		display: flex;
	}
}

@media (max-width: 768px) {
	.site-header .container {
		justify-content: space-between;
	}
	
	.site-header .container > *:first-child {
		flex: 1;
	}
	
	.footer-column.footer-contact > .footer-title,
	.footer-column.footer-contact > .footer-phone,
	.footer-column.footer-contact > .footer-social-title,
	.footer-column.footer-contact > .footer-social-icons {
		display: none;
	}
	
	.footer-contact-mobile-left,
	.footer-contact-mobile-right,
	.footer-address-mobile {
		display: flex;
	}
	
	.footer-contact-mobile-left {
		flex-direction: column;
		gap: 8px;
	}
	
	.footer-contact-mobile-left h4 {
		font-size: 18px;
		font-weight: 700;
		color: #fff;
		margin: 0 0 8px 0;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}
	
	.footer-contact-mobile-left p {
		margin: 0;
		font-size: 14px;
		color: #ccc;
		line-height: 1.6;
	}
	
	.footer-mobile-phone {
		margin: 0;
		font-size: 24px;
		font-weight: 700;
		line-height: 1.2;
	}
	
	.footer-mobile-phone a {
		color: #BC8D3F;
		text-decoration: none;
		transition: color 0.3s ease;
	}
	
	.footer-mobile-phone a:hover {
		color: #fff;
	}
	
	.footer-mobile-gsm {
		margin: 0;
		font-size: 14px;
		color: #ccc;
		line-height: 1.6;
	}
	
	.footer-contact-mobile-left a {
		color: #ccc;
		text-decoration: none;
		transition: color 0.3s ease;
	}
	
	.footer-contact-mobile-left a:hover {
		color: #BC8D3F;
	}
	
	.footer-mobile-gsm a {
		color: #ccc;
		text-decoration: none;
		transition: color 0.3s ease;
	}
	
	.footer-mobile-gsm a:hover {
		color: #BC8D3F;
	}
	
	.footer-contact-mobile-right {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 10px;
	}
	
	.footer-contact-mobile-right h5 {
		font-size: 14px;
		font-weight: 600;
		color: #fff;
		margin: 0 0 8px 0;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}
	
	.footer-contact-mobile-right .footer-social-icons {
		display: flex;
		gap: 10px;
	}
	
	.footer-contact-mobile-right .social-icon {
		width: 36px;
		height: 36px;
	}
	
	.footer-address-mobile {
		
		padding: 20px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		margin-bottom: 20px;
	}
	
	.footer-address-mobile p {
		margin: 0;
		font-size: 14px;
		color: #ccc;
		line-height: 1.6;
		text-align: left;
	}
	
	.footer-address-mobile a {
		color: #ccc;
		text-decoration: none;
		transition: color 0.3s ease;
	}
	
	.footer-address-mobile a:hover {
		color: #BC8D3F;
	}
	
	.footer-bottom {
		border-top: none;
		padding-top: 0;
		text-align: center;
		font-size: 12px;
		color: #999;
	}
	
	.footer-bottom p {
		margin: 0;
		line-height: 1.6;
	}
}

/* Proje Detay Sayfası */
/* Proje Images Wrapper */
.proje-images-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	margin: 40px 0;
}

.entry-thumbnail {
	margin-bottom: 0;
}

.entry-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}

/* Proje Galeri Preview */
.proje-galeri-preview h3 {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.galeri-preview-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.galeri-preview-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 1;
}

.galeri-preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.galeri-preview-item:hover img {
	transform: scale(1.1);
}

.galeri-preview-item a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.galeri-preview-item.has-more .galeri-more-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.3s ease;
}

.galeri-preview-item.has-more:hover .galeri-more-overlay {
	background: rgba(0, 0, 0, 0.7);
}

.galeri-more-count {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.entry-title {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #333;
}

.entry-excerpt {
	font-size: 20px;
	color: #666;
	margin-bottom: 30px;
	line-height: 1.6;
}

.entry-content {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 40px;
}

.proje-bilgileri {
	margin: 40px 0;
	padding: 30px;
	background-color: #f9f9f9;
	border-radius: 8px;
	border-left: 4px solid #BC8D3F;
}

.proje-bilgileri h2 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
}

.proje-bilgileri-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.proje-bilgi-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.proje-bilgi-item strong {
	font-size: 14px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.proje-bilgi-item span {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.proje-ozeti,
.proje-teknik-bilesenler,
.proje-hizmet-kapsami {
	margin: 40px 0;
}

.proje-ozeti h2,
.proje-teknik-bilesenler h2,
.proje-hizmet-kapsami h2 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #333;
	border-bottom: 2px solid #BC8D3F;
	padding-bottom: 10px;
}

.proje-ozeti-content,
.proje-teknik-bilesenler-content,
.proje-hizmet-kapsami-content {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
}

.proje-ozeti-content p,
.proje-teknik-bilesenler-content p,
.proje-hizmet-kapsami-content p {
	margin-bottom: 15px;
}

.proje-ozeti-content ul,
.proje-teknik-bilesenler-content ul,
.proje-hizmet-kapsami-content ul {
	margin-left: 20px;
	margin-bottom: 15px;
}

.proje-ozeti-content li,
.proje-teknik-bilesenler-content li,
.proje-hizmet-kapsami-content li {
	margin-bottom: 8px;
}

.proje-galeri {
	margin-top: 50px;
}

.proje-galeri h2 {
	font-size: 28px;
	margin-bottom: 30px;
	color: #333;
}

.galeri-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.galeri-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 4/3;
}

.galeri-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.galeri-item:hover img {
	transform: scale(1.05);
}

.galeri-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.galeri-item a:hover {
	opacity: 0.9;
}

/* Projeler Sayfası */
.page-header {
	margin-bottom: 60px;
	text-align: center;
}

.page-title {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.page-content {
	font-size: 18px;
	color: #666;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

.projeler-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.proje-card {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proje-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.proje-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.proje-card-image {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	background-color: #f5f5f5;
}

.proje-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.proje-card:hover .proje-card-image img {
	transform: scale(1.1);
}

.proje-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.proje-card:hover .proje-card-overlay {
	opacity: 1;
}

.proje-card-button {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	padding: 12px 24px;
	border: 2px solid #BC8D3F;
	border-radius: 6px;
	background-color: transparent;
	transition: all 0.3s ease;
}

.proje-card:hover .proje-card-button {
	background-color: #BC8D3F;
	color: #fff;
}

.proje-card-content {
	padding: 30px;
}

.proje-card-title {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.3;
}

.proje-card-excerpt {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

.proje-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding-top: 20px;
	border-top: 1px solid #e5e5e5;
}

.proje-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #666;
}

.proje-meta-item svg {
	color: #BC8D3F;
	flex-shrink: 0;
}

.no-projects {
	text-align: center;
	padding: 80px 20px;
	color: #666;
	font-size: 18px;
}

@media (max-width: 768px) {
	.galeri-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 15px;
	}
	
	.proje-images-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.galeri-preview-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.galeri-more-count {
		font-size: 20px;
	}
	
	.entry-title {
		font-size: 28px;
	}
	
	.entry-excerpt {
		font-size: 18px;
	}
	
	.page-title {
		font-size: 36px;
	}
	
	.projeler-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.proje-card-image {
		height: 240px;
	}
	
	.proje-card-content {
		padding: 20px;
	}
	
	.proje-card-title {
		font-size: 20px;
	}
}

/* Yukarı Çık Butonu */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: auto;
	height: auto;
	padding: 12px 20px;
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	border-color: #BC8D3F;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
	transform: translateY(-2px);
}

.scroll-to-top span {
	white-space: nowrap;
}

/* Alt Sayfa İçerik Alanı */
.page-content-wrapper {
	padding-top: 170px;
}

.breadcrumb {
	margin-bottom: 15px;
	font-size: 14px;
	color: #666;
}

.breadcrumb a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb a:hover {
	color: #BC8D3F;
}

.breadcrumb span {
	color: #333;
	font-weight: 600;
}

.breadcrumb-divider {
	width: 100%;
	height: 1px;
	background-color: #e5e5e5;
	margin-bottom: 30px;
}

.page-content-wrapper .entry-header {
	margin-bottom: 40px;
}

.page-content-wrapper .entry-title {
	font-size: 42px;
	font-weight: 700;
	color: #333;
	margin-bottom: 0;
	line-height: 1.2;
}

.page-content-wrapper .entry-content {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

.page-content-wrapper .entry-content p {
	margin-bottom: 20px;
}

.page-content-wrapper .entry-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-top: 40px;
	margin-bottom: 20px;
}

.page-content-wrapper .entry-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin-top: 30px;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.scroll-to-top {
		bottom: 20px;
		right: 20px;
		padding: 10px 16px;
		font-size: 12px;
	}
	
	.scroll-to-top span {
		display: none;
	}
	
	.page-content-wrapper {
		padding-top: 100px;
	}
	
	.page-content-wrapper .entry-title {
		font-size: 32px;
	}
	
	.breadcrumb {
		font-size: 12px;
	}
}
