/* Aqua Spin – Su Ürünleri Danışmanlık - Ana stiller */
:root {
	--color-primary: #384b5f;
	--color-primary-light: #4a6178;
	--color-content-bg: #fff;
	--color-content-text: #333;
	--color-content-faded: #7d7d7d;
	--header-top-bg: var(--color-primary);
	--header-middle-bg: #fff;
	--header-text: #7d7d7d;
	--header-text-hover: var(--color-primary);
	--footer-top-bg: #2d3a4a;
	--footer-bottom-bg: #252f3d;
	--section-primary-bg: #5a7a94;
	--site-max-width: 1200px;
	--header-height: 136px;
	--header-top-height: 36px;
	--shadow-text: 0 1px 1px rgba(0,0,0,0.3);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-content-text);
	background: var(--color-content-bg);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

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

/* Canvas */
.l-canvas {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* ========== HEADER ========== */
.l-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 111;
	width: 100%;
}

.l-subheader {
	margin: 0 auto;
}

.l-subheader.width_full {
	width: 100%;
}

.l-subheader-h {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--site-max-width);
	height: inherit;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* Üst bar */
.l-subheader.at_top {
	background: var(--header-top-bg);
	color: #fff;
	line-height: var(--header-top-height);
	height: var(--header-top-height);
}

.at_top .top-email {
	color: #fff;
	text-shadow: var(--shadow-text);
	font-size: 0.95rem;
}

.at_top .top-email:hover {
	color: #f5f5f5;
}

.at_top .top-email i {
	margin-right: 0.35rem;
}

.top-socials {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.top-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	color: #fff;
	transition: opacity 0.2s;
}

.top-socials a:hover {
	opacity: 0.85;
}

/* Dil seçici */
.lang-dropdown {
	position: relative;
	margin-left: 0.75rem;
}

.lang-dropdown .w-dropdown-current {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: none;
	border: none;
	color: #fff;
	font-size: 0.9rem;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
}

.lang-dropdown .w-dropdown-current img {
	width: 20px;
	height: 14px;
	object-fit: contain;
}

.lang-dropdown .w-dropdown-list {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	color: #333;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	min-width: 120px;
	display: none;
	z-index: 10;
}

.lang-dropdown.open .w-dropdown-list {
	display: block;
}

.lang-dropdown .w-dropdown-list a {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.75rem;
	color: #333;
}

.lang-dropdown .w-dropdown-list a:hover {
	background: #f5f5f5;
}

.lang-dropdown .w-dropdown-list img {
	width: 20px;
	height: 14px;
}

/* Orta bar - logo ve menü (orijinal sitede arka plan görseli, zemin şeffaf) */
.l-subheader.at_middle {
	background-color: transparent;
	background-image: url('../images/header-bg.png');
	background-repeat: repeat-x;
	background-position: center center;
	background-size: contain;
	line-height: 100px;
	height: 100px;
}

.l-header.sticky .l-subheader.at_middle {
	line-height: 100px;
	height: 100px;
}

.logo {
	display: block;
}

.logo img {
	height: 70px;
	width: auto;
}

.l-header.sticky .logo img {
	height: 60px;
}

/* Ana menü */
.main-nav .nav-list.level_1 {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	flex-wrap: wrap;
}

.main-nav .nav-list a {
	padding: 0.5rem;
	color: var(--header-text);
	font-weight: 300;
	font-size: 1rem;
	font-family: 'Open Sans', sans-serif;
	transition: color 0.2s;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list .current-menu-item a {
	color: var(--header-text-hover);
}

.main-nav .nav-list > li {
	position: relative;
}

.main-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	min-width: 200px;
	padding: 0.5rem 0;
	display: none;
	z-index: 20;
}

.main-nav .menu-item-has-children:hover .sub-menu {
	display: block;
}

.main-nav .sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	width: 44px;
	height: 44px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	padding: 0;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-primary);
}

/* Sticky header */
.l-header.sticky .l-subheader.at_top {
	box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

/* ========== HERO ========== */
.hero-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	margin-top: var(--header-height);
	overflow: hidden;
}

.hero-slider {
	position: absolute;
	inset: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: 30% 60%;
	background-color: #2d3a4a;
}

.hero-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.hero-shapes {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-shapes .shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.4;
}

.hero-shapes .shape-1 {
	width: 335px;
	height: 335px;
	background: rgba(69, 255, 222, 0.4);
	top: 10%;
	left: 50%;
	transform: translateX(calc(-50% + 60px));
}

.hero-shapes .shape-2 {
	width: 335px;
	height: 335px;
	background: rgba(41, 96, 255, 0.4);
	top: 8%;
	left: 50%;
	transform: translateX(calc(-50% + 20px));
}

.hero-content {
	position: relative;
	z-index: 5;
	max-width: var(--site-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hero-title {
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.1;
	color: #fff;
	text-shadow: 0 1px 5px rgba(0,0,0,0.25);
	margin: 0 0 1rem;
	max-width: 520px;
}

.hero-subtitle {
	font-family: 'Open Sans', sans-serif;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	line-height: 1.4;
	color: #fff;
	text-shadow: 0 1px 5px rgba(0,0,0,0.25);
	margin: 0;
	max-width: 520px;
}

.hero-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 10;
	pointer-events: none;
}

.hero-nav button {
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	border: none;
	color: #fff;
	font-size: 1.25rem;
	cursor: pointer;
	pointer-events: auto;
	transition: background 0.2s;
}

.hero-nav button:hover {
	background: rgba(255,255,255,0.4);
}

.hero-prev {
	left: 1rem;
}

.hero-next {
	right: 1rem;
}

/* Dalga ayraç */
.l-section-shape.wave-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4vmax;
	color: var(--section-primary-bg);
	pointer-events: none;
}

.l-section-shape.wave-bottom svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* ========== SAYFA HERO (Hakkımızda vb.) ========== */
.page-hero {
	position: relative;
	width: 100%;
	min-height: 38vh;
	margin-top: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.page-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.page-hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3vmax;
	color: var(--section-primary-bg);
}

.page-hero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--site-max-width);
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
	text-align: left;
}

.page-hero-title {
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3rem);
	color: #fff;
	text-shadow: 0 1px 5px rgba(0,0,0,0.3);
	margin: 0;
	max-width: 790px;
}

/* Hikayemiz bölümü */
.section-story {
	background: var(--color-content-bg);
}

.story-cols {
	align-items: flex-start;
}

.story-cols .col-8 {
	flex: 1 1 60%;
	min-width: 0;
}

.story-cols .col-4 {
	flex: 1 1 35%;
	min-width: 280px;
}

.story-cols.reversed {
	flex-direction: row-reverse;
}

.w-separator.size_small {
	width: 60px;
	height: 2px;
	background: rgba(56, 75, 95, 0.25);
	margin: 0 0 1rem;
	border: none;
}

.story-title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--color-content-text);
	margin: 0 0 0.5rem;
}

.story-text p {
	margin: 0 0 1rem;
	line-height: 1.7;
	color: var(--color-content-text);
}

.story-text p:last-child {
	margin-bottom: 0;
}

.footer-nav a.current {
	opacity: 1;
	font-weight: 600;
}

/* ========== Yapım aşamasında (Projeler, Blog vb.) ========== */
.section-coming-soon {
	padding-top: calc(var(--header-height) + 4rem);
	padding-bottom: 4rem;
	background: var(--color-content-bg);
	min-height: 50vh;
	display: flex;
	align-items: center;
}

.coming-soon-inner {
	text-align: center;
	max-width: 480px;
	margin: 0 auto;
}

.coming-soon-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(56, 75, 95, 0.1);
	color: var(--color-primary);
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}

.coming-soon-title {
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: var(--color-content-text);
	margin: 0 0 0.75rem;
}

.coming-soon-text {
	font-size: 1.125rem;
	color: var(--color-content-faded);
	margin: 0 0 0.25rem;
}

.coming-soon-sub {
	font-size: 0.95rem;
	color: var(--color-content-faded);
	margin: 0 0 1.5rem;
}

.coming-soon-link {
	display: inline-block;
	padding: 0.6rem 1.25rem;
	background: var(--color-primary);
	color: #fff;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: background 0.2s, opacity 0.2s;
}

.coming-soon-link:hover {
	background: var(--color-primary-light);
	opacity: 0.95;
}

/* ========== Blog – Haberler & Makaleler grid ========== */
.section-blog {
	background: var(--color-content-bg);
	padding-top: 2rem;
	padding-bottom: 4rem;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

@media (max-width: 1040px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 610px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

.blog-card {
	background: var(--color-content-bg);
	color: var(--color-content-text);
	border-radius: 0.3rem;
	box-shadow: 0 0.03rem 0.06rem rgba(0,0,0,0.1), 0 0.1rem 0.3rem rgba(0,0,0,0.1);
	transition: box-shadow 0.3s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.1), 0 0.33rem 1rem rgba(0,0,0,0.15);
}

.blog-card-image {
	position: relative;
	margin-bottom: -2rem;
	overflow: hidden;
}

.blog-card-image a {
	display: block;
	line-height: 0;
}

.blog-card-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1024 / 640;
	object-fit: cover;
	vertical-align: middle;
}

.blog-badge {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	z-index: 2;
	display: inline-block;
	padding: 0.25rem 0.5rem;
	background: var(--color-primary);
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border-radius: 0.2rem;
}

.blog-card-body {
	margin-top: 2rem;
	padding: 9% 11% 11% 11%;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.blog-card-title a {
	color: inherit;
	text-decoration: none;
}

.blog-card-title a:hover {
	color: var(--color-primary);
}

.blog-card-date {
	display: block;
	color: var(--color-content-faded);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.blog-card-excerpt {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--color-content-text);
}

@media (max-width: 610px) {
	.blog-card-title {
		font-size: 1.2rem;
	}
}

/* ========== Tekil blog yazısı (detay sayfası) ========== */
.section-single-post {
	padding-top: calc(var(--header-height) + 2rem);
	padding-bottom: 4rem;
	background: var(--color-content-bg);
}

.section-single-post .l-section-h {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.single-post-back {
	margin: 0 0 1.5rem;
	font-size: 0.95rem;
}

.single-post-back a {
	color: var(--color-primary);
	text-decoration: none;
}

.single-post-back a:hover {
	text-decoration: underline;
}

.single-post-back i {
	margin-right: 0.35rem;
}

.single-post-badge {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	background: var(--color-primary);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-radius: 0.2rem;
	margin-bottom: 0.75rem;
}

.single-post-title {
	font-family: 'Urbanist', sans-serif;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0.5rem;
	color: var(--color-content-text);
}

.single-post-date {
	display: block;
	color: var(--color-content-faded);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.single-post-content {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--color-content-text);
}

.single-post-content p {
	margin: 0 0 1rem;
}

.single-post-content p:last-child {
	margin-bottom: 0;
}

.single-post-content strong {
	font-weight: 600;
}

.single-post-content a {
	color: var(--color-primary);
	text-decoration: underline;
}

.single-post-content a:hover {
	opacity: 0.85;
}

.single-post-content ul,
.single-post-content ol {
	margin: 0.5rem 0 1rem 1.5rem;
	padding: 0;
}

.single-post-content ul {
	list-style: disc;
}

.single-post-content ol {
	list-style: decimal;
}

.single-post-content li {
	margin-bottom: 0.35rem;
}

.single-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 0.25rem;
	margin: 1rem 0;
}

.single-post-refs {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0,0,0,0.08);
	font-size: 0.9rem;
	color: var(--color-content-faded);
}

.single-post-refs p {
	margin: 0 0 0.35rem;
}

.single-post-refs a {
	color: var(--color-primary);
}

/* ========== Yasal / metin sayfaları (Gizlilik, Kvkk, Çerez) ========== */
.section-legal {
	padding-top: calc(var(--header-height) + 2rem);
	background: var(--color-content-bg);
}

.legal-content {
	max-width: 790px;
	margin: 0 auto;
}

.legal-content h2 {
	font-size: 1.5rem;
	color: var(--color-content-text);
	margin: 2rem 0 0.75rem;
}

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

.legal-content p {
	margin: 0 0 1rem;
	line-height: 1.7;
	color: var(--color-content-text);
}

.legal-content a {
	color: var(--color-primary);
	text-decoration: underline;
}

.legal-content a:hover {
	opacity: 0.85;
}

.legal-content .text-center {
	text-align: center;
}

.legal-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0 1.5rem;
	font-size: 0.95rem;
}

.legal-content th,
.legal-content td {
	border: 1px solid var(--color-border, #ddd);
	padding: 0.6rem 0.75rem;
	text-align: left;
	vertical-align: top;
	color: var(--color-content-text);
}

.legal-content th {
	background: rgba(56, 75, 95, 0.06);
	font-weight: 600;
}

.legal-content tr:nth-child(even) td {
	background: rgba(0, 0, 0, 0.02);
}

.legal-content ul,
.legal-content ol {
	margin: 0.5rem 0 1rem 1.25rem;
	line-height: 1.7;
	color: var(--color-content-text);
}

.legal-content li {
	margin-bottom: 0.35rem;
}

/* ========== EKİBİMİZ – Ekip kartları ========== */
.section-team {
	background: var(--color-content-bg);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	align-items: start;
}

.w-person.layout_cards {
	background: var(--color-content-bg);
	border-radius: 0.3rem;
	overflow: hidden;
	box-shadow: 0 0.03rem 0.06rem rgba(0,0,0,0.1);
	transition: box-shadow 0.3s;
	max-width: 320px;
}

.w-person.layout_cards:hover {
	box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.1), 0 0.33rem 1rem rgba(0,0,0,0.15);
}

.w-person-image {
	aspect-ratio: 1;
	overflow: hidden;
	background: #f0f0f0;
}

.w-person-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.w-person-content {
	padding: 1.25rem 1rem;
}

.w-person-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-content-text);
	margin: 0 0 0.25rem;
	text-transform: capitalize;
}

.w-person-role {
	font-size: 0.95rem;
	color: var(--color-content-faded);
	margin-bottom: 0.75rem;
}

.w-person-links {
	display: flex;
	gap: 0.5rem;
}

.w-person-links-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-content-faded);
	font-size: 1.25rem;
	transition: color 0.2s;
}

.w-person-links-item:hover {
	color: var(--color-primary);
}

/* ========== BÖLÜMLER ========== */
.l-section {
	padding: 4rem 1.5rem;
}

.l-section-h {
	max-width: var(--site-max-width);
	margin: 0 auto;
}

.g-cols {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
}

.g-cols.reversed {
	flex-direction: row-reverse;
}

.g-cols .col {
	flex: 1 1 300px;
	min-width: 0;
}

.g-cols .col-image .rounded {
	border-radius: 10px;
	overflow: hidden;
}

.g-cols .col-image img {
	width: 100%;
	height: auto;
}

/* Section Yem - turkuaz arka plan */
.section-yem.color_primary {
	background: var(--section-primary-bg);
	color: #fff;
}

.section-yem .text-block h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	margin: 0 0 1rem;
	line-height: 1.3;
	text-shadow: var(--shadow-text);
}

.section-yem .text-block p {
	margin: 0;
	opacity: 0.95;
	line-height: 1.6;
}

.section-yem .text-block {
	max-width: 520px;
}

/* Hizmetlerimiz - beyaz arka plan */
.section-services {
	background: var(--color-content-bg);
	position: relative;
	padding-bottom: 6rem;
}

.section-services .l-section-shape.wave-bottom {
	color: var(--section-primary-bg);
}

.section-title {
	text-align: center;
	max-width: 610px;
	margin: 0 auto 0.5rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--color-content-text);
}

.section-title.dark {
	color: var(--color-content-text);
}

.section-services .section-title {
	text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.w-iconbox {
	text-align: center;
}

.w-iconbox-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: var(--section-primary-bg);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
}

.w-iconbox-icon.icontype_img .troubleshooting-icon {
	width: 2rem;
	height: 2rem;
}

.w-iconbox-title {
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
	color: var(--color-content-text);
}

.w-iconbox-meta p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--color-content-faded);
	line-height: 1.5;
}

/* Haberler */
.section-news.color_primary {
	background: var(--section-primary-bg);
	color: #fff;
}

.section-news .section-title.dark {
	color: var(--color-content-text);
}

.news-carousel-wrap {
	position: relative;
	margin-top: 2rem;
}

.news-carousel {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	overflow: hidden;
}

.news-card {
	background: var(--color-content-bg);
	color: var(--color-content-text);
	border-radius: 0.3rem;
	box-shadow: 0 0.03rem 0.06rem rgba(0,0,0,0.1);
	overflow: hidden;
	transition: box-shadow 0.3s;
}

.news-card:hover {
	box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.1), 0 0.33rem 1rem rgba(0,0,0,0.15);
}

.news-card-image {
	display: block;
	position: relative;
	aspect-ratio: 1024/640;
	overflow: hidden;
}

.news-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-badge {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	background: var(--color-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
}

.news-card-body {
	padding: 2rem 11% 11%;
	margin-top: -2rem;
	position: relative;
}

.news-card-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.news-card-title a {
	color: inherit;
}

.news-card-title a:hover {
	color: var(--color-primary);
}

.news-date {
	font-size: 0.9rem;
	color: var(--color-content-faded);
	display: block;
	margin-bottom: 0.5rem;
}

.news-card-body > p {
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
	color: var(--color-content-faded);
}

.carousel-prev,
.carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	border: none;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s;
}

.carousel-prev:hover,
.carousel-next:hover {
	background: rgba(255,255,255,0.5);
}

.carousel-prev {
	left: -1rem;
}

.carousel-next {
	right: -1rem;
}

/* Bize Ulaşın */
.section-contact.color_footer-top {
	background: var(--footer-top-bg);
	color: #fff;
}

.contact-title {
	font-size: 30px;
	margin: 0 0 0.5rem;
	padding-top: 10%;
	text-shadow: var(--shadow-text);
}

.section-contact p {
	max-width: 520px;
	line-height: 1.6;
}

.section-contact a {
	color: #fff;
	text-decoration: underline;
}

.section-contact a:hover {
	opacity: 0.9;
}

.contact-socials {
	display: flex;
	gap: 0.8rem;
	margin-top: 1rem;
}

.contact-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #fff;
	text-decoration: none;
	font-size: 1.25rem;
}

.contact-socials a:hover {
	opacity: 0.85;
}

.contact-form .form-row {
	margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 4px;
	background: rgba(255,255,255,0.1);
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255,255,255,0.7);
}

.contact-form textarea {
	min-height: 100px;
	resize: vertical;
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 4px;
	font-family: inherit;
	font-size: 1rem;
	cursor: pointer;
	transition: opacity 0.2s;
}

.btn-submit {
	background: var(--color-primary-light);
	color: #fff;
}

.btn-submit:hover {
	opacity: 0.9;
}

/* ========== İletişim sayfası (iki sütun: harita + form) ========== */
.section-contact-page {
	padding-top: 2rem;
	padding-bottom: 4rem;
	background: var(--color-content-bg);
}

.contact-page-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
	max-width: var(--site-max-width);
	margin: 0 auto;
}

.contact-map-wrap {
	position: relative;
	width: 100%;
	border-radius: 0.3rem;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-map-wrap iframe {
	display: block;
	vertical-align: middle;
}

.contact-info-list {
	margin-top: 1.5rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.contact-info-icon {
	flex-shrink: 0;
	width: 2rem;
	text-align: center;
	color: var(--color-primary);
	font-size: 1.25rem;
}

.contact-info-item a {
	color: var(--color-content-text);
	text-decoration: none;
}

.contact-info-item a:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

.contact-hours {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	color: var(--color-content-faded);
}

.contact-desc {
	margin: 0 0 1.25rem;
	line-height: 1.6;
	color: var(--color-content-text);
	font-size: 0.95rem;
}

.contact-page-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.contact-page-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	font-size: 1.2rem;
	transition: opacity 0.2s;
}

.contact-page-socials a:hover {
	opacity: 0.9;
}

.contact-form-box {
	background: #e8f6fc;
	border-radius: 3px 3px 100px 3px;
	padding: 2.5rem;
	box-shadow: 4px 4px 10px 0 rgba(222, 222, 222, 0.8);
}

.contact-form-title {
	font-family: 'Urbanist', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 1.5rem;
	text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.contact-form-page .form-row {
	margin-bottom: 1.25rem;
}

.contact-form-page .form-row label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-content-text);
}

.contact-form-page input,
.contact-form-page textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(56, 75, 95, 0.15);
	border-radius: 4px;
	background: #fff;
	color: var(--color-content-text);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.2s;
}

.contact-form-page input:focus,
.contact-form-page textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}

.contact-form-page input::placeholder,
.contact-form-page textarea::placeholder {
	color: var(--color-content-faded);
}

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

.contact-form-page .form-actions {
	margin-bottom: 0;
	margin-top: 0.5rem;
}

.contact-form-page .btn-submit {
	padding: 0.75rem 2rem;
	font-weight: 600;
	background: var(--color-primary);
}

.contact-form-page .btn-submit:hover {
	background: var(--color-primary-light);
}

@media (max-width: 900px) {
	.contact-page-grid {
		grid-template-columns: 1fr;
	}

	.contact-form-box {
		border-radius: 3px 3px 60px 3px;
		padding: 2rem;
	}
}

/* ========== FOOTER ========== */
.l-footer {
	margin-top: auto;
}

.footer-bottom.color_footer-bottom {
	background: var(--footer-bottom-bg);
	color: #fff;
	padding: 3rem 1.5rem;
}

.footer-inner {
	text-align: center;
	max-width: 790px;
	margin: 0 auto;
}

.footer-tagline {
	font-size: 1.1rem;
	font-weight: 400;
	margin: 0 0 1rem;
	line-height: 1.5;
}

.footer-line {
	width: 30%;
	height: 1px;
	background: rgba(255,255,255,0.3);
	margin: 0 auto 1.5rem;
}

.footer-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.footer-nav a {
	color: #fff;
}

.footer-nav a:hover {
	opacity: 0.85;
}

.footer-copy {
	text-align: center;
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.9;
}

/* Mobil menü toggle */
.nav-mobile-toggle {
	display: none;
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 110;
	width: 50px;
	height: 50px;
	background: rgba(0,0,0,0.3);
	color: #fff;
	border: none;
	border-radius: 0.3rem;
	font-size: 0.9rem;
	cursor: pointer;
}

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.75);
	z-index: 100;
}

/* Sticky davranışı */
.l-header {
	transition: box-shadow 0.3s;
}

body.scrolled .l-header .l-subheader.at_middle {
	box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 1040px) {
	.main-nav .nav-list.level_1 {
		display: none;
	}

	.main-nav.mobile-open .nav-list.level_1 {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 300px;
		max-width: 85vw;
		background: #fff;
		box-shadow: -5px 0 15px rgba(0,0,0,0.15);
		padding: 5rem 1.5rem 1.5rem;
		z-index: 105;
		overflow-y: auto;
	}

	.main-nav .sub-menu {
		position: static;
		box-shadow: none;
		display: none;
		padding-left: 1rem;
	}

	.main-nav .menu-item-has-children.open .sub-menu {
		display: block;
	}

	.nav-toggle {
		display: flex;
	}

	.l-subheader.at_top .l-subheader-cell.at_left {
		display: none;
	}

	.news-carousel {
		grid-template-columns: 1fr;
	}

	.carousel-prev,
	.carousel-next {
		display: none;
	}
}

@media (max-width: 768px) {
	.story-cols .col-8,
	.story-cols .col-4 {
		flex: 1 1 100%;
		min-width: 100%;
	}

	.story-cols .col-image {
		order: -1;
	}
}

@media (max-width: 610px) {
	.l-subheader.at_top {
		display: none;
	}

	.l-subheader.at_middle {
		height: 70px;
		line-height: 70px;
	}

	:root {
		--header-height: 70px;
	}

	.logo img {
		height: 50px;
	}

	.nav-mobile-toggle {
		display: block;
	}

	.hero-shapes .shape-1,
	.hero-shapes .shape-2 {
		width: 200px;
		height: 200px;
	}

	.g-cols.reversed,
	.g-cols {
		flex-direction: column;
	}

	.section-contact .g-cols {
		flex-direction: column;
	}
}
