/* ==========================================================================
   Kürk Gayrimenkul — Site Stylesheet
   Bölümler her şablon eklendikçe genişler (bkz. README şablon tablosu).
   ========================================================================== */

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

body {
	margin: 0;
	background: #ffffff;
	color: #494946;
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

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

button {
	font-family: inherit;
	cursor: pointer;
}

h1, h2, h3, h4 {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
}

p {
	margin: 0;
}

.wp-block-group {
	margin-block-start: 0;
}

/* index.html (fallback şablonu) — sabit header'ın altında kalmasın diye.
   Blok attribute'undaki padding elle yazılmış şablonlarda render edilmediğinden
   boşluk burada verilir. */
.site-main {
	padding: 170px 48px 120px;
}

/* Genel yardımcılar */
.eyebrow {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: #cfac61;
}

/* Odak gorunurlugu — cift katman: koyu halka + altin hale (WCAG 2.2, her iki zeminde 3:1) */
:focus-visible {
	outline: 3px solid #0B1F3A;
	outline-offset: 2px;
	box-shadow: 0 0 0 6px #C9A227;
	border-radius: 2px;
}

/* Programatik odak hedefi (ornegin atlama baglantisinin hedefi) halka gostermesin */
[tabindex="-1"]:focus,
[tabindex="-1"]:focus-visible {
	outline: none;
	box-shadow: none;
}

/* Atlama baglantisi (Skip link) */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	background: #0B1F3A;
	color: #fff;
	padding: .75rem 1rem;
	text-decoration: underline;
	border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Header (parts/header.html)
   ========================================================================== */

body {
	/* Hero'lu sayfalarda header sabit(fixed) olduğundan içerik altına kaymasın diye
	   ilgili şablonların hero bölümü kendi min-height'ı ile bunu telafi eder;
	   solid header sayfalarında ise header'ın kapladığı yükseklik kadar boşluk gerekir. */
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
	background: var(--wp--custom--overlay--header-transparent);
	box-shadow: none;
	padding: 26px clamp(18px, 3.3vw, 48px);
}

body.has-solid-header .site-header,
.site-header.is-scrolled {
	background: rgba(255, 255, 255, .97);
	box-shadow: var(--wp--custom--shadow--sticky-header);
	padding: 14px clamp(18px, 3.3vw, 48px);
}

.site-header__bar {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(14px, 2.4vw, 32px);
}

.site-header__logo-link {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.kurk-logo {
	display: block;
	height: clamp(34px, 3.4vw, 44px);
	width: auto;
}

/*
 * wpautop koruması: core/shortcode bloğunun çıktısı wpautop'tan geçer ve
 * inline elementler (logo <img>/<a>, footer linkleri) bir <p> içine sarılır.
 * display:contents bu sarmalayıcıyı yerleşim açısından yok sayar; böylece
 * flex/grid gap'leri tasarımdaki gibi çalışır.
 */
.site-header__bar p:has(.site-header__logo-link),
.site-footer__col p:has(> .kurk-logo),
.site-footer__col p:has(> .site-footer__link) {
	display: contents;
}

.site-header__bar p:empty,
.site-footer__col p:empty {
	display: none;
}

.site-header .kurk-logo--color {
	display: none;
}

body.has-solid-header .site-header .kurk-logo--color,
.site-header.is-scrolled .kurk-logo--color {
	display: block;
}

body.has-solid-header .site-header .kurk-logo--white,
.site-header.is-scrolled .kurk-logo--white {
	display: none;
}

/* Nav — masaüstü */
.kurk-nav--desktop {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.6vw, 40px);
	justify-content: center;
	flex-wrap: nowrap;
	overflow: hidden;
}

.kurk-nav__link {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(11px, 1.05vw, 13.5px);
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: color .25s;
	white-space: nowrap;
}

.kurk-nav--desktop .kurk-nav__link {
	color: rgba(255, 255, 255, .85);
}

.kurk-nav--desktop .kurk-nav__link.is-active {
	font-weight: 700;
	color: #cfac61;
	border-bottom-color: #cfac61;
}

.kurk-nav--desktop .kurk-nav__link:hover {
	color: #cfac61;
}

body.has-solid-header .kurk-nav--desktop .kurk-nav__link,
.site-header.is-scrolled .kurk-nav--desktop .kurk-nav__link {
	color: rgba(0, 65, 95, .72);
}

body.has-solid-header .kurk-nav--desktop .kurk-nav__link.is-active,
.site-header.is-scrolled .kurk-nav--desktop .kurk-nav__link.is-active {
	color: #00415f;
	border-bottom-color: #cfac61;
}

/* Dil değiştirici */
.site-header__right {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.6vw, 20px);
	flex-shrink: 0;
}

.lang-switcher {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	letter-spacing: .08em;
}

.lang-switcher__item {
	background: none;
	border: none;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	letter-spacing: inherit;
	font-weight: 400;
	color: rgba(255, 255, 255, .5);
	transition: color .25s;
}

.lang-switcher__item.is-active {
	font-weight: 700;
	color: #cfac61;
}

.lang-switcher__item:hover {
	color: #cfac61;
}

.lang-switcher__divider {
	color: rgba(255, 255, 255, .35);
}

body.has-solid-header .lang-switcher__item,
.site-header.is-scrolled .lang-switcher__item {
	color: rgba(0, 65, 95, .5);
}

body.has-solid-header .lang-switcher__item.is-active,
.site-header.is-scrolled .lang-switcher__item.is-active {
	color: #cfac61;
}

body.has-solid-header .lang-switcher__divider,
.site-header.is-scrolled .lang-switcher__divider {
	color: rgba(0, 65, 95, .25);
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: none;
}

.hamburger__line {
	display: block;
	width: 26px;
	height: 2px;
	background: #ffffff;
	transition: transform .3s, opacity .2s, background .25s;
}

body.has-solid-header .hamburger__line,
.site-header.is-scrolled .hamburger__line {
	background: #00415f;
}

.site-header.is-menu-open .hamburger__line {
	background: #ffffff;
}

.site-header.is-menu-open .hamburger__line--top {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .hamburger__line--mid {
	opacity: 0;
}

.site-header.is-menu-open .hamburger__line--bottom {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 899px) {
	.kurk-nav--desktop {
		display: none;
	}

	.hamburger {
		display: flex;
	}
}

/* Mobil tam ekran panel */
.mobile-nav-panel {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: #00415f;
	display: none !important;
	flex-direction: column;
	padding: 104px clamp(24px, 6vw, 56px) 48px;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
	overflow-y: auto;
}

/*
 * !important + pointer-events: bir blok/eklenti bu elemente "is-layout-flex"
 * gibi bir utility class ekleyip display:none kuralımızı ezerse bile panel
 * görünmez durumdayken tıklamaları bloke etmesin diye ikinci bir güvenlik katmanı.
 * (Bkz. sürüm notu: Group bloğunun "layout":"flex" özelliği bu class'ı üretip
 * paneli görünmez halde sayfayı kapatan bir katmana çeviriyordu.)
 */
.mobile-nav-panel.is-visible {
	display: flex !important;
	pointer-events: auto;
}

.mobile-nav-panel.is-open {
	opacity: 1;
}

.kurk-nav--mobile {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.kurk-nav--mobile .kurk-nav__link {
	font-size: clamp(22px, 6vw, 30px);
	font-weight: 700;
	letter-spacing: .04em;
	color: #ffffff;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	min-height: 44px;
	display: block;
}

.kurk-nav--mobile .kurk-nav__link.is-active,
.kurk-nav--mobile .kurk-nav__link:hover {
	color: #cfac61;
}

.mobile-nav-panel__footer {
	margin-top: auto;
	padding-top: 44px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mobile-nav-panel__contact {
	margin: 0;
}

.mobile-nav-panel__contact a {
	font-size: 16px;
	color: rgba(255, 255, 255, .75);
}

body.is-menu-open {
	overflow: hidden;
}

/* ==========================================================================
   Footer (parts/footer.html)
   ========================================================================== */

.site-footer {
	background: #001a26;
	color: rgba(255, 255, 255, .75);
	font-family: 'Inter', sans-serif;
}

.site-footer a:hover {
	color: #cfac61;
}

.site-footer__top {
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 48px 56px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 56px;
}

.site-footer__col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.site-footer__col--brand {
	gap: 24px;
}

.site-footer__col--brand .kurk-logo {
	width: 236px;
	max-width: 100%;
	height: 51px;
	object-fit: contain;
	object-position: left center;
}

.site-footer__tagline {
	font-size: 13.5px;
	line-height: 1.75;
	max-width: 300px;
	color: rgba(255, 255, 255, .55);
}

.site-footer__heading {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #cfac61;
	margin: 0 0 8px;
}

.site-footer__col a {
	font-size: 14px;
	color: rgba(255, 255, 255, .72);
	transition: color .2s;
}

.site-footer__link {
	display: block;
}

.site-footer__address {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .72);
}

.site-footer__contact-link {
	margin: 0;
}

.site-footer__social {
	display: flex;
	gap: 14px;
}

.site-footer__social-link {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .25s, background .25s;
}

.site-footer__social-link:hover {
	border-color: #cfac61;
	background: rgba(207, 172, 97, .1);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__bottom-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 22px 48px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 12.5px;
	color: rgba(255, 255, 255, .45);
}

.site-footer__copy {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.site-footer__legal-link {
	color: rgba(255, 255, 255, .45);
	font-size: 12.5px;
}

/* ==========================================================================
   Ortak yardımcı bileşenler (kart etiketleri, butonlar, istatistikler)
   ========================================================================== */

.section-kicker {
	display: flex;
	align-items: baseline;
	gap: 24px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}

.section-kicker__line {
	flex: 1;
	height: 1px;
	background: #d7d7d4;
	min-width: 80px;
}

.section-heading--center {
	text-align: center;
	margin-bottom: 64px;
}

.section-heading__title {
	font-size: clamp(26px, 2.8vw, 42px);
	font-weight: 700;
	color: #00415f;
	margin: 18px 0 0;
	text-wrap: balance;
}

.section-heading__title--white {
	color: #ffffff;
}

.tag {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 7px 14px;
	display: inline-block;
}

.tag--outline-navy {
	color: #00415f;
	border: 1px solid #00415f;
}

.tag--outline-gray {
	color: #00415f;
	border: 1px solid #d7d7d4;
}

.tag--outline-gold {
	color: #cfac61;
	border: 1px solid #cfac61;
}

.btn {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 18px 32px;
	transition: background .3s, color .3s;
}

.btn--navy {
	color: #ffffff;
	background: #00415f;
}

.btn--navy:hover {
	background: #cfac61;
	color: #494946;
}

.stat__value {
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #00415f;
}

.stat__value--gold {
	color: #cfac61;
}

.stat__label {
	font-size: 12.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #777776;
}

/* ==========================================================================
   Front Page — Hero
   ========================================================================== */

@keyframes heroFade {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceDown {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(9px); }
}

.home-hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	overflow: hidden;
	background: #494946;
}

.home-hero__media {
	position: absolute;
	inset: 0;
}

.home-hero__poster {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.home-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: max(100vw, 178vh);
	height: max(100vh, 56.5vw);
	pointer-events: none;
}

.home-hero__video iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--wp--custom--overlay--hero);
}

.home-hero__content {
	position: relative;
	z-index: 2;
	height: 100%;
	align-items: center !important;
	justify-content: center;
	text-align: center;
	padding: 0 24px;
	animation: heroFade 1.1s ease .2s both;
	max-width: 100%;
}

.home-hero__eyebrow {
	margin-bottom: 28px;
	color: #cfac61;
}

.home-hero__title {
	font-size: clamp(32px, 4.6vw, 62px);
	font-weight: 700;
	line-height: 1.16;
	color: #ffffff;
	max-width: 1060px;
	text-wrap: balance;
}

.home-hero__lead {
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.7;
	color: rgba(255, 255, 255, .82);
	max-width: 720px;
	margin: 28px auto 0;
}

.home-hero__scroll {
	margin-top: 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	color: rgba(255, 255, 255, .85);
	font-family: 'Montserrat', sans-serif;
	font-size: 12.5px;
	letter-spacing: .22em;
	text-transform: uppercase;
	transition: color .25s;
}

.home-hero__scroll:hover {
	color: #cfac61;
}

.home-hero__scroll-arrow {
	display: block;
	width: 26px;
	height: 26px;
	border-right: 2px solid #cfac61;
	border-bottom: 2px solid #cfac61;
	transform: rotate(45deg);
	animation: bounceDown 2s ease-in-out infinite;
}

/* ==========================================================================
   Front Page — Öne Çıkan Proje
   ========================================================================== */



.featured-project {
	background: #f4f4f2;
	padding: 120px 48px;
}

.featured-project__card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
	box-shadow: var(--wp--custom--shadow--hero-card);
	background: #ffffff;
}

.featured-project__media {
	display: block;
	position: relative;
	min-height: 520px;
	overflow: hidden;
}

.featured-project__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}

.featured-project__media:hover img {
	transform: scale(1.05);
}

.featured-project__body {
	padding: clamp(40px, 5vw, 72px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 26px;
}

.featured-project__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.featured-project__title {
	font-size: clamp(34px, 3.4vw, 48px);
	font-weight: 800;
	color: #00415f;
	letter-spacing: .01em;
}

.featured-project__desc {
	font-size: 16px;
	line-height: 1.8;
	color: #494946;
}

.featured-project__stats {
	display: flex;
	gap: 44px;
	flex-wrap: wrap;
	padding: 8px 0;
}

/* ==========================================================================
   Front Page — Sektörler (asimetrik ızgara)
   ========================================================================== */

.sectors-section {
	background: #ffffff;
	padding: 120px 48px;
}

.sectors-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: stretch;
}

.sector-card {
	position: relative;
	display: block;
	overflow: hidden;
	background: #494946;
}

.sector-card--featured {
	flex: 1 1 340px;
	min-width: 300px;
	min-height: 508px;
}

.sectors-grid__rest {
	flex: 1.9 1 540px;
	min-width: 300px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(max(45%, 220px), 1fr));
	gap: 24px;
}

.sectors-grid__rest .sector-card {
	height: 242px;
}

.sector-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: .85;
	transition: transform .8s ease, opacity .5s;
	display: block;
}

.sector-card:hover .sector-card__bg {
	transform: scale(1.07);
	opacity: 1;
}

.sector-card__overlay {
	position: absolute;
	inset: 0;
	background: var(--wp--custom--overlay--card-bottom);
}

.sector-card__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sector-card__rule {
	width: 36px;
	height: 2px;
	background: #cfac61;
	display: block;
}

.sector-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: .02em;
}

.sector-card__desc {
	font-size: 13.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .75);
}

/* ==========================================================================
   Front Page — Yaşam Galerisi (yatay rail)
   ========================================================================== */

.gallery-section {
	background: #494946;
	padding: 120px 0;
	overflow: hidden;
}

.gallery-section__head {
	max-width: 1280px;
	margin: 0 auto 52px;
	padding: 0 48px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.gallery-rail__nav {
	display: flex;
	gap: 12px;
}

.gallery-rail__btn {
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 255, 255, .25);
	background: transparent;
	color: #ffffff;
	font-size: 20px;
	transition: border-color .25s, background .25s;
}

.gallery-rail__btn:hover {
	border-color: #cfac61;
	background: rgba(207, 172, 97, .12);
}

.gallery-rail {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 0 48px 24px;
	scrollbar-width: none;
}

.gallery-rail::-webkit-scrollbar {
	display: none;
}

.gallery-rail__item {
	flex: 0 0 auto;
	width: min(400px, 78vw);
	margin: 0;
	scroll-snap-align: start;
}

.gallery-rail__image {
	height: 500px;
	overflow: hidden;
}

.gallery-rail__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s;
}

.gallery-rail__item:hover .gallery-rail__image img {
	transform: scale(1.05);
}

.gallery-rail__item figcaption {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 2px 0;
}

.gallery-rail__rule {
	width: 22px;
	height: 1px;
	background: #cfac61;
	display: block;
}

.gallery-rail__item figcaption span:last-child {
	font-family: 'Montserrat', sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .75);
}

@media (max-width: 782px) {
	.featured-project,
	.sectors-section {
		padding: 80px 24px;
	}
}

/* ==========================================================================
   Sayfa Hero (görselli iç sayfa başlıkları — Kurumsal, Sektör Detay, BluVerde)
   ========================================================================== */

.page-hero {
	position: relative;
	overflow: hidden;
	background: #494946;
}

.page-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
}

.page-hero__content {
	position: relative;
	z-index: 2;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.page-hero__content--bottom {
	justify-content: flex-end;
	padding-bottom: 64px;
}

.page-hero__title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
	color: #ffffff;
}

.page-hero__title--gold {
	color: #cfac61;
}

.page-hero--kurumsal {
	height: 60vh;
	min-height: 460px;
}

.page-hero--kurumsal .page-hero__bg {
	opacity: .6;
}

.page-hero__overlay--kurumsal {
	background: linear-gradient(180deg, rgba(0, 40, 58, .5), rgba(0, 65, 95, .72));
}

/* ==========================================================================
   Kurumsal — Sekmeler
   ========================================================================== */

.kurumsal-tabs-bar {
	background: #ffffff;
	border-bottom: 1px solid #dededa;
	position: sticky;
	top: 0;
	z-index: 100;
}

.kurumsal-tabs {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	display: flex;
	gap: 0;
	overflow-x: auto;
}

.kurumsal-tabs__btn {
	background: none;
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #777776;
	padding: 22px 28px;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
	transition: color .25s;
}

.kurumsal-tabs__btn.is-active {
	font-weight: 800;
	color: #00415f;
	border-bottom-color: #cfac61;
}

.kurumsal-panel {
	display: none;
}

.kurumsal-panel.is-active {
	display: block;
}

.kurumsal-panel[data-tab-panel="tarihce"],
.kurumsal-panel[data-tab-panel="vizyon"],
.kurumsal-panel[data-tab-panel="kvkk"] {
	background: #f4f4f2;
	padding: 100px 48px;
}

.kurumsal-history {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 64px;
	align-items: center;
}

.kurumsal-history__title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 800;
	letter-spacing: .1em;
	color: #00415f;
	text-transform: uppercase;
	margin: 0 0 30px;
	line-height: 1.15;
}

.kurumsal-history__text {
	font-size: 16.5px;
	line-height: 1.9;
	color: #494946;
	margin: 0 0 18px;
}

.kurumsal-history__text:last-child {
	margin-bottom: 0;
}

.timeline {
	display: flex;
	flex-direction: column;
	border-left: 2px solid #d7d7d4;
	padding-left: 40px;
}

.timeline__item {
	position: relative;
	padding-bottom: 40px;
}

.timeline__marker {
	position: absolute;
	left: -49px;
	top: 4px;
	width: 16px;
	height: 16px;
	background: #cfac61;
	transform: rotate(45deg);
}

.timeline__year {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #00415f;
	margin-bottom: 8px;
}

.timeline__text {
	font-size: 15px;
	line-height: 1.7;
	color: #494946;
}

.vision-mission {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 24px;
}

.vision-mission__card {
	padding: clamp(40px, 4vw, 64px);
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.vision-mission__card--navy {
	background: #00415f;
}

.vision-mission__card--white {
	background: #ffffff;
	box-shadow: var(--wp--custom--shadow--card);
}

.vision-mission__rule {
	width: 44px;
	height: 3px;
	background: #cfac61;
	display: block;
}

.vision-mission__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: #00415f;
	margin: 0;
}

.vision-mission__title--white {
	color: #ffffff;
}

.vision-mission__text {
	font-size: 16px;
	line-height: 1.85;
	color: #494946;
	margin: 0;
}

.vision-mission__text--light {
	color: rgba(255, 255, 255, .78);
}

.legal-card {
	max-width: 880px;
	margin: 0 auto;
	background: #ffffff;
	padding: clamp(36px, 4vw, 64px);
	box-shadow: var(--wp--custom--shadow--card);
}

.legal-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 700;
	color: #00415f;
	margin: 16px 0 24px;
}

.legal-card__text {
	font-size: 15px;
	line-height: 1.9;
	color: #494946;
	margin: 0 0 16px;
}

.legal-card__text:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   İstatistik bandı (Kurumsal "Rakamlar" bölümü)
   ========================================================================== */

.stats-band {
	background: #494946;
	padding: 90px 48px;
}

.stats-band__grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 48px;
	text-align: center;
}

.stats-band__value {
	font-family: 'Montserrat', sans-serif;
	font-size: 52px;
	font-weight: 800;
	color: #cfac61;
}

.stats-band__label {
	font-size: 13px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	margin-top: 8px;
}

/* ==========================================================================
   Başlık bandı (Projeler / Sektörler / İletişim — hero'suz iç sayfalar)
   ========================================================================== */

.title-band {
	background: #00415f;
	padding: 170px 48px 90px;
	position: relative;
	overflow: hidden;
}

.title-band__accent {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(207, 172, 97, .08), transparent 55%);
}

.title-band__inner {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.title-band__title {
	font-size: clamp(38px, 4.4vw, 58px);
	font-weight: 800;
	color: #ffffff;
	margin: 20px 0 0;
}

.title-band__desc {
	font-size: 17px;
	line-height: 1.75;
	color: rgba(255, 255, 255, .72);
	max-width: 620px;
	margin: 22px 0 0;
}

/* ==========================================================================
   Projeler — liste bölümleri
   ========================================================================== */

.project-list-section--surface {
	background: #f4f4f2;
	padding: 100px 48px;
}

.project-list-section--white {
	background: #ffffff;
	padding: 100px 48px 120px;
}

.project-list-section__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.list-heading {
	display: flex;
	align-items: baseline;
	gap: 24px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.list-heading__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: #00415f;
	margin: 0;
}

.list-heading__line {
	flex: 1;
	height: 1px;
	background: #d7d7d4;
	min-width: 80px;
}

.stat--sm .stat__value {
	font-size: 24px;
}

.stat--sm .stat__label {
	font-size: 12px;
}

/* Devam eden proje kartı */

.ongoing-card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	background: #ffffff;
	box-shadow: var(--wp--custom--shadow--card-featured);
	transition: box-shadow .35s;
}

.ongoing-card:hover {
	box-shadow: 0 32px 90px rgba(0, 65, 95, .22);
}

.ongoing-card__media {
	position: relative;
	min-height: 440px;
	overflow: hidden;
}

.ongoing-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s;
}

.ongoing-card:hover .ongoing-card__media img {
	transform: scale(1.05);
}

.ongoing-card__badge {
	position: absolute;
	top: 24px;
	left: 24px;
	background: #cfac61;
	color: #494946;
	font-family: 'Montserrat', sans-serif;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	padding: 9px 16px;
	text-transform: uppercase;
}

.ongoing-card__body {
	padding: clamp(36px, 4vw, 64px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

.ongoing-card__location {
	font-size: 12.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #777776;
}

.ongoing-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #00415f;
}

.ongoing-card__desc {
	font-size: 15.5px;
	line-height: 1.8;
	color: #494946;
}

.ongoing-card__stats {
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
}

.ongoing-card__cta {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #cfac61;
}

/* Tamamlanan proje kartı */

.tag--completed {
	background: rgba(207, 172, 97, .15);
	border: 1px solid #cfac61;
	color: #cfac61;
	font-family: 'Montserrat', sans-serif;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	padding: 8px 15px;
	text-transform: uppercase;
	display: inline-block;
}

.completed-card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	background: #494946;
	box-shadow: var(--wp--custom--shadow--card-featured);
}

.completed-card__body {
	padding: clamp(36px, 4vw, 64px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	order: 1;
}

.completed-card__tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.completed-card__location {
	font-size: 12.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
}

.completed-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	text-wrap: balance;
}

.completed-card__desc {
	font-size: 15.5px;
	line-height: 1.8;
	color: rgba(255, 255, 255, .7);
}

.completed-card__features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	margin-top: 6px;
}

.feature-box {
	border: 1px solid rgba(255, 255, 255, .14);
	padding: 16px;
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
}

.completed-card__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	min-height: 440px;
	order: 2;
}

.completed-card__gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.completed-card__gallery-main {
	grid-column: 1 / -1;
}

@media (max-width: 782px) {
	.title-band {
		padding: 140px 24px 64px;
	}

	.project-list-section--surface,
	.project-list-section--white {
		padding: 64px 24px;
	}
}

/* ==========================================================================
   BluVerde — single-proje.html
   ========================================================================== */

@keyframes bluHeroFade {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

.page-hero--bluverde {
	height: 88vh;
	min-height: 600px;
}

.page-hero--bluverde .page-hero__content {
	padding-bottom: 72px;
	animation: bluHeroFade 1s ease .15s both;
}

.page-hero__overlay--bluverde {
	background: linear-gradient(180deg, rgba(0, 40, 58, .5) 0%, rgba(0, 40, 58, .2) 45%, rgba(0, 40, 58, .78) 100%);
}

.page-hero__tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.tag--gold-solid {
	color: #494946;
	background: #cfac61;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 8px 15px;
	display: inline-block;
}

.tag--outline-white {
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, .4);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 8px 15px;
	display: inline-block;
}

.page-hero__title--bluverde {
	font-size: clamp(44px, 6vw, 84px);
	letter-spacing: .02em;
}

.page-hero__lead {
	font-size: clamp(15px, 1.3vw, 18px);
	color: rgba(255, 255, 255, .8);
	max-width: 640px;
	margin: 16px 0 0;
	line-height: 1.7;
}

/* Özellik şeridi */

.feature-strip {
	background: #00415f;
	padding: 0 48px;
}

.feature-strip__grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, .1);
}

.feature-strip__cell {
	background: #00415f;
	padding: 34px 28px;
}

.feature-strip__label {
	font-family: 'Montserrat', sans-serif;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .18em;
	color: #cfac61;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.feature-strip__value {
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: #ffffff;
}

/* Proje Hakkında */

.proje-about {
	background: #ffffff;
	padding: 110px 48px;
}

.proje-about__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 64px;
	align-items: center;
}

.proje-about__title {
	font-size: clamp(28px, 2.8vw, 40px);
	font-weight: 700;
	color: #00415f;
	margin: 18px 0 26px;
	line-height: 1.25;
	text-wrap: balance;
}

.proje-about__text {
	font-size: 16px;
	line-height: 1.85;
	color: #494946;
	margin: 0 0 18px;
}

.proje-about__text:last-child {
	margin-bottom: 0;
}

.proje-about__mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.proje-about__mosaic img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.proje-about__mosaic-main {
	height: 300px !important;
	grid-column: 1 / -1;
}

/* Teknik Özellikler */

.tech-specs {
	background: #f4f4f2;
	padding: 110px 48px;
}

.tech-specs__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.tech-specs__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.tech-card {
	background: #ffffff;
	padding: 36px 32px;
	border-top: 3px solid #cfac61;
	box-shadow: var(--wp--custom--shadow--card-soft);
	transition: transform .3s, box-shadow .3s;
}

.tech-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 44px rgba(0, 65, 95, .12);
}

.tech-card__num {
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: rgba(0, 65, 95, .14);
	margin-bottom: 14px;
}

.tech-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #00415f;
	margin: 0 0 10px;
}

.tech-card__desc {
	font-size: 14px;
	line-height: 1.7;
	color: #777776;
	margin: 0;
}

/* Kat Planları */

.floor-plans {
	background: #ffffff;
	padding: 110px 48px;
}

.floor-plans__inner {
	max-width: 1180px;
	margin: 0 auto;
}

.plan-tabs {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 48px;
	border-bottom: 1px solid #dededa;
}

.plan-tabs__btn {
	background: none;
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .06em;
	color: #777776;
	padding: 16px 34px;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
	transition: color .25s;
}

.plan-tabs__btn.is-active {
	font-weight: 800;
	color: #00415f;
	border-bottom-color: #cfac61;
}

.plan-panel {
	display: none;
}

.plan-panel.is-active {
	display: block;
}

.plan-panel__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 56px;
	align-items: center;
}

.plan-panel__placeholder {
	position: relative;
	background: repeating-linear-gradient(45deg, #f4f4f2, #f4f4f2 14px, #dededa 14px, #dededa 28px);
	min-height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #dededa;
	text-align: center;
	padding: 32px;
}

.plan-panel__placeholder span {
	font-family: monospace;
	font-size: 13px;
	color: #777776;
	letter-spacing: .05em;
	line-height: 1.8;
}

.plan-panel__body {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.plan-panel__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: #00415f;
}

.plan-panel__desc {
	font-size: 15.5px;
	line-height: 1.8;
	color: #494946;
}

.plan-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: #dededa;
	border: 1px solid #dededa;
}

.plan-specs__item {
	background: #ffffff;
	padding: 20px 22px;
}

.plan-specs__key {
	font-size: 11.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #777776;
	margin-bottom: 6px;
}

.plan-specs__value {
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #00415f;
}

.btn--outline-navy {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #00415f;
	border: 2px solid #00415f;
	background: transparent;
	padding: 16px 28px;
}

.btn--outline-navy:hover {
	background: #00415f;
	color: #ffffff;
}

/* Galeri + lightbox */

.proje-gallery {
	background: #494946;
	padding: 110px 48px;
	position: relative;
}

.proje-gallery__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.proje-gallery__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 28px;
	margin-bottom: 44px;
}

.gallery-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.gallery-filters__btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .28);
	color: rgba(255, 255, 255, .75);
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 11px 20px;
	transition: all .25s;
}

.gallery-filters__btn.is-active {
	background: #cfac61;
	border-color: #cfac61;
	color: #494946;
}

.proje-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 14px;
}

.gallery-photo {
	position: relative;
	height: 260px;
	overflow: hidden;
	cursor: zoom-in;
	background: #494946;
}

.gallery-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .92;
	transition: transform .7s, opacity .4s;
}

.gallery-photo:hover img {
	transform: scale(1.06);
	opacity: 1;
}

.gallery-photo__label {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 14px 18px;
	background: linear-gradient(transparent, rgba(0, 40, 58, .85));
	color: rgba(255, 255, 255, .9);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(10, 11, 13, .94);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 48px;
	cursor: zoom-out;
}

.lightbox.is-open {
	display: flex;
}

.lightbox__img {
	max-width: 92%;
	max-height: 88vh;
	object-fit: contain;
	box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}

.lightbox__close {
	position: absolute;
	top: 28px;
	right: 36px;
	background: none;
	border: 1px solid rgba(255, 255, 255, .35);
	color: #ffffff;
	width: 48px;
	height: 48px;
	font-size: 20px;
}

.lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 1px solid rgba(255, 255, 255, .35);
	color: #ffffff;
	width: 52px;
	height: 52px;
	font-size: 20px;
}

.lightbox__nav--prev {
	left: 28px;
}

.lightbox__nav--next {
	right: 28px;
}

body.lightbox-open {
	overflow: hidden;
}

/* Bilgi Talep Formu */

.request-form-section {
	background: #f4f4f2;
	padding: 110px 48px 130px;
}

.request-form-section__inner {
	max-width: 880px;
	margin: 0 auto;
}

.request-form-section__lead {
	font-size: 15px;
	color: #777776;
	margin: 18px 0 0;
}

.request-form {
	background: #ffffff;
	padding: clamp(32px, 4vw, 56px);
	box-shadow: 0 24px 70px rgba(0, 65, 95, .1);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
	margin-top: 52px;
}

.request-form__input {
	border: 1px solid #d7d7d4;
	padding: 17px 18px;
	font-size: 15px;
	font-family: 'Inter', sans-serif;
	color: #494946;
	outline-color: #cfac61;
	background: #ffffff;
	width: 100%;
}

.request-form__input::placeholder {
	color: #bbbbbb;
}

.request-form__textarea {
	grid-column: 1 / -1;
	resize: vertical;
}

.request-form__submit {
	grid-column: 1 / -1;
	background: #00415f;
	color: #ffffff;
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .16em;
	padding: 20px;
	transition: background .3s, color .3s;
}

.request-form__submit:hover {
	background: #cfac61;
	color: #494946;
}

.request-form__legal {
	grid-column: 1 / -1;
	font-size: 12px;
	color: #bbbbbb;
	margin: 0;
	text-align: center;
}

@media (max-width: 782px) {
	.proje-about,
	.tech-specs,
	.floor-plans,
	.proje-gallery,
	.request-form-section {
		padding-left: 24px;
		padding-right: 24px;
	}
}

/* ==========================================================================
   Sektörler — archive-sektor.html
   ========================================================================== */

.sektor-list {
	background: #f4f4f2;
	padding: 100px 48px 120px;
}

.sektor-list__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.sektor-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: stretch;
}

.sektor-card {
	position: relative;
	display: block;
	overflow: hidden;
	background: #494946;
}

.sektor-card--featured {
	flex: 1 1 360px;
	min-width: 300px;
	min-height: 520px;
}

.sektor-grid__rest {
	flex: 1.9 1 560px;
	min-width: 300px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(max(45%, 220px), 1fr));
	gap: 24px;
}

.sektor-grid__rest .sektor-card {
	height: 248px;
}

.sektor-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: .85;
	transition: transform .8s, opacity .5s;
	display: block;
}

.sektor-card:hover .sektor-card__bg {
	transform: scale(1.07);
	opacity: 1;
}

.sektor-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 40, 58, 0) 25%, rgba(0, 40, 58, .9) 100%);
}

.sektor-card__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 34px 36px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sektor-card__num {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #cfac61;
}

.sektor-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 23px;
	font-weight: 700;
	color: #ffffff;
}

.sektor-card__desc {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .75);
}

.sektor-card__cta {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #cfac61;
	margin-top: 6px;
}

@media (max-width: 782px) {
	.sektor-list {
		padding: 64px 24px 80px;
	}
}

/* ==========================================================================
   Sektör Detay — single-sektor.html
   ========================================================================== */

.page-hero--sektor {
	height: 64vh;
	min-height: 480px;
}

.page-hero--sektor .page-hero__bg {
	opacity: .75;
}

.page-hero__overlay--sektor {
	background: linear-gradient(180deg, rgba(0, 40, 58, .55) 0%, rgba(0, 65, 95, .55) 100%);
}

.page-hero__content--bottom {
	padding-bottom: 68px;
}

.page-hero__kicker {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .3em;
	color: #cfac61;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.page-hero__title--sektor {
	font-size: clamp(36px, 4.6vw, 60px);
	text-transform: none;
	letter-spacing: normal;
	text-wrap: balance;
}

.page-hero__lead--wide {
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.7;
	color: rgba(255, 255, 255, .82);
	max-width: 720px;
	margin: 20px 0 0;
}

.sektor-overview {
	background: #ffffff;
	padding: 110px 48px;
}

.sektor-overview__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 64px;
	align-items: start;
}

.sektor-overview__head {
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 700;
	color: #00415f;
	margin: 18px 0 24px;
	line-height: 1.3;
	text-wrap: balance;
}

.sektor-overview__body {
	font-size: 16px;
	line-height: 1.85;
	color: #494946;
}

.sektor-overview__body p {
	margin: 0 0 18px;
}

.sektor-overview__body p:last-child {
	margin-bottom: 0;
}

.sektor-facts {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.sektor-facts__eyebrow {
	margin-bottom: 6px;
}

.fact-card {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	border: 1px solid #dededa;
	padding: 24px 26px;
	background: #f4f4f2;
}

.fact-card__marker {
	width: 10px;
	height: 10px;
	background: #cfac61;
	flex-shrink: 0;
	margin-top: 6px;
	transform: rotate(45deg);
}

.fact-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #00415f;
	margin-bottom: 6px;
}

.fact-card__desc {
	font-size: 14px;
	line-height: 1.7;
	color: #777776;
}

.sektor-others {
	background: #f4f4f2;
	padding: 80px 48px;
}

.sektor-others__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.sektor-others__label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .28em;
	color: #777776;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.sektor-chips {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.sektor-chip {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	color: #00415f;
	border: 1px solid #bbbbbb;
	padding: 14px 24px;
	background: #ffffff;
	transition: all .25s;
	display: inline-block;
}

.sektor-chip:hover {
	border-color: #cfac61;
	color: #cfac61;
}

.b2b-form-section {
	background: #00415f;
	padding: 110px 48px 130px;
}

.b2b-form-section__inner {
	max-width: 880px;
	margin: 0 auto;
}

.b2b-form-section__lead {
	font-size: 15px;
	color: rgba(255, 255, 255, .65);
	margin: 18px 0 0;
}

.b2b-form {
	margin-top: 52px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
}

.request-form__input--full {
	grid-column: 1 / -1;
}

@media (max-width: 782px) {
	.sektor-overview,
	.sektor-others,
	.b2b-form-section {
		padding-left: 24px;
		padding-right: 24px;
	}
}

/* ==========================================================================
   İletişim — page-iletisim.html
   ========================================================================== */

.contact-section {
	background: #f4f4f2;
	padding: 100px 48px 120px;
}

.contact-section__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 24px;
	align-items: start;
}

.contact-card {
	background: #ffffff;
	padding: clamp(36px, 4vw, 56px);
	box-shadow: var(--wp--custom--shadow--card);
	display: flex;
	flex-direction: column;
	gap: 34px;
}

.contact-card__label {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .2em;
	color: #cfac61;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.contact-card__company {
	font-family: 'Montserrat', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #00415f;
	line-height: 1.45;
}

.contact-card__text {
	font-size: 15.5px;
	line-height: 1.8;
	color: #494946;
}

.contact-card__link {
	font-size: 17px;
	font-weight: 600;
	color: #00415f;
}

.contact-card__social {
	display: flex;
	gap: 14px;
}

.contact-card__social-link {
	width: 46px;
	height: 46px;
	border: 1px solid #d7d7d4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .25s;
}

.contact-card__social-link:hover {
	border-color: #cfac61;
}

.contact-side {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-map {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-map__frame {
	height: 340px;
	overflow: hidden;
	box-shadow: var(--wp--custom--shadow--card);
}

.contact-map__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.contact-map__link {
	font-family: 'Montserrat', sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #00415f;
	transition: color .25s;
}

.contact-map__link:hover {
	color: #cfac61;
}

.contact-form-card {
	background: #ffffff;
	padding: clamp(32px, 3.5vw, 48px);
	box-shadow: var(--wp--custom--shadow--card);
}

.contact-form-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #00415f;
	margin: 0 0 26px;
}

.contact-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.contact-form .request-form__input {
	padding: 16px 18px;
}

@media (max-width: 782px) {
	.contact-section {
		padding: 64px 24px 80px;
	}
}

/* ==========================================================================
   Form eklentisi sarmalayıcı (FormLayer Pro shortcode'ları)
   ========================================================================== */

.form-embed {
	width: 100%;
	margin-top: 24px;
}

/*
 * .form-embed--card: talep formu ve B2B formu bölümlerinde kullanılır —
 * bu bölümlerin arka planı koyu/gri olduğundan, eklentinin kendi (muhtemelen
 * koyu metin varsayan) stiliyle çakışmaması için formu her zaman beyaz bir
 * kart içine alır; input/buton görünümü FormLayer Pro'nun kendi tasarımına
 * bırakılmıştır (en sorunsuz görünüm budur).
 */
.form-embed--card {
	background: #ffffff;
	padding: clamp(32px, 4vw, 56px);
	box-shadow: 0 24px 70px rgba(0, 65, 95, .12);
	margin-top: 52px;
}

/* ==========================================================================
   Iletisim sayfasi - yerlesim rotuslari
   ========================================================================== */

@media (min-width: 1024px) {
	.contact-section__inner {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 32px;
		align-items: stretch;
	}
}

.contact-map__frame {
	height: 300px;
}

.contact-form-card__title {
	margin-bottom: 0;
}

.contact-form-card .form-embed {
	margin-top: 22px;
}

/* ==========================================================================
   FormLayer form gorunumu - marka uyumu
   ========================================================================== */

.form-embed .formlayer-form-fields-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.form-embed .formlayer-field-wrap,
.form-embed .formlayer-submit-wrap {
	grid-column: 1 / -1;
	margin: 0;
}

.form-embed .formlayer-field-wrap.half-width {
	grid-column: span 1;
}

@media (max-width: 640px) {
	.form-embed .formlayer-field-wrap.half-width {
		grid-column: 1 / -1;
	}
}

.form-embed .formlayer-label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: #00415f;
	margin-bottom: 9px;
}

.form-embed .formlayer-label .required-indicator {
	color: #cfac61;
}

.form-embed .formlayer-form .formlayer-input {
	width: 100%;
	font-family: inherit;
	font-size: 15.5px;
	line-height: 1.6;
	color: #2b2b28;
	background: #fbfbfa;
	border: 1px solid #dcdcd8;
	border-radius: 0;
	padding: 15px 18px;
	box-shadow: none;
	transition: border-color .2s, background .2s, box-shadow .2s;
}

.form-embed .formlayer-form .formlayer-input::placeholder {
	color: #9a9a94;
}

.form-embed .formlayer-form .formlayer-input:focus {
	background: #ffffff;
	border-color: #00415f;
	box-shadow: 0 0 0 3px rgba(0, 65, 95, .10);
}

/* Klavyeyle gelindiginde form alanlarinda da cift katmanli halka */
.form-embed .formlayer-form .formlayer-input:focus-visible {
	outline: 3px solid #0B1F3A;
	outline-offset: 2px;
	box-shadow: 0 0 0 6px #C9A227;
}

.form-embed .formlayer-form textarea.formlayer-input {
	min-height: 150px;
	resize: vertical;
}

.form-embed .formlayer-gdpr-wrap {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.form-embed .formlayer-gdpr-wrap > p:empty {
	display: none;
}

.form-embed .formlayer-gdpr-wrap input[type="checkbox"] {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	margin: 2px 0 0;
	accent-color: #00415f;
}

.form-embed .formlayer-gdpr-label {
	font-size: 14px;
	line-height: 1.65;
	color: #5a5a55;
}

.form-embed .formlayer-gdpr-label a {
	color: #00415f;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color .25s;
}

.form-embed .formlayer-gdpr-label a:hover {
	color: #cfac61;
}

.form-embed .formlayer-submit-btn {
	font-family: 'Montserrat', sans-serif;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #ffffff;
	background: #00415f;
	border: 0;
	border-radius: 0;
	padding: 17px 44px;
	cursor: pointer;
	transition: background .25s, color .25s;
}

.form-embed .formlayer-submit-btn:hover {
	background: #cfac61;
	color: #00415f;
}

.form-embed .formlayer-form select.formlayer-input {
	height: auto;
	line-height: 1.5;
	appearance: none;
	-webkit-appearance: none;
	padding-right: 46px;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2300415f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	cursor: pointer;
}

/* ==========================================================================
   Header - menu hover ve dil degistirici uyumu
   ========================================================================== */

/*
 * Hover rengi eskiden yalnizca seffaf header'da calisiyordu: koyu/scrolled
 * header kurali (body.has-solid-header ...) daha yuksek ozgulluge sahip
 * oldugu icin :hover'i eziyordu. Asagidaki kurallar her iki durumu da
 * kapsar ve alt cizgiyi de gecise dahil eder.
 */
.kurk-nav__link {
	transition: color .25s, border-color .25s;
}

.kurk-nav--desktop .kurk-nav__link:hover {
	color: #cfac61;
	border-bottom-color: rgba(207, 172, 97, .55);
}

body.has-solid-header .kurk-nav--desktop .kurk-nav__link:hover,
.site-header.is-scrolled .kurk-nav--desktop .kurk-nav__link:hover {
	color: #00415f;
	border-bottom-color: #cfac61;
}

/*
 * Dil degistirici: GTranslate <a class="glink"> uretiyor, temanin eski
 * .lang-switcher__item kurallari bu isaretlemeye hic uygulanmiyordu.
 * Asagida ana menu tipografisi birebir tekrarlanir.
 */
.lang-switcher .gtranslate_wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lang-switcher .glink {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(11px, 1.05vw, 13.5px);
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	color: rgba(255, 255, 255, .85);
	text-decoration: none;
	transition: color .25s, border-color .25s;
}

.lang-switcher .glink img {
	display: none;
}

.lang-switcher .glink:hover {
	color: #cfac61;
	border-bottom-color: rgba(207, 172, 97, .55);
}

.lang-switcher .glink.gt-current-lang {
	font-weight: 700;
	color: #cfac61;
	border-bottom-color: #cfac61;
}

body.has-solid-header .lang-switcher .glink,
.site-header.is-scrolled .lang-switcher .glink {
	color: rgba(0, 65, 95, .72);
}

body.has-solid-header .lang-switcher .glink:hover,
.site-header.is-scrolled .lang-switcher .glink:hover {
	color: #00415f;
	border-bottom-color: #cfac61;
}

body.has-solid-header .lang-switcher .glink.gt-current-lang,
.site-header.is-scrolled .lang-switcher .glink.gt-current-lang {
	color: #00415f;
	border-bottom-color: #cfac61;
}

/* ==========================================================================
   Alt sayfa baslik alani - one cikan gorsel (featured image) + overlay
   ==========================================================================
   Sablonlarda <!-- wp:post-featured-image --> blogu title-band / page-hero
   icine eklenir. Sayfada one cikan gorsel yoksa blok hic ciktilanmaz, bu
   yuzden asagidaki :has() kurallari devreye girmez ve eski duz zemin korunur.
   ========================================================================== */

.title-band__media,
.page-hero__media {
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.title-band__media img,
.page-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

/* One cikan gorsel varsa sablondaki sabit yedek gorsel gizlenir. */
.page-hero:has(.page-hero__media) .page-hero__bg {
	display: none;
}

/* Gorselli baslik bandinda basligin okunabilirligi icin koyu scrim. */
.title-band:has(.title-band__media) {
	padding-top: 190px;
	padding-bottom: 110px;
}

.title-band:has(.title-band__media) .title-band__accent {
	background:
		linear-gradient(180deg, rgba(0, 65, 95, .55) 0%, rgba(0, 65, 95, .86) 100%),
		linear-gradient(120deg, rgba(207, 172, 97, .12), transparent 55%);
}

@media (max-width: 782px) {
	.title-band:has(.title-band__media) {
		padding-top: 150px;
		padding-bottom: 80px;
	}
}

/* ==========================================================================
   Genel sayfa sablonu ("Sayfalar") - icerik alani
   ==========================================================================
   Kendi sablonu olmayan tum sayfalar bu sablonu kullanir: baslik bandi
   (one cikan gorsel + overlay) + post-content.
   ========================================================================== */

.page-main {
	padding: 88px 48px 120px;
}

@media (max-width: 782px) {
	.page-main {
		padding: 56px 24px 80px;
	}
}

.page-main .wp-block-post-content {
	font-size: 16.5px;
	line-height: 1.85;
	color: #494946;
}

.page-main .wp-block-post-content > * + * {
	margin-top: 22px;
}

.page-main .wp-block-post-content h2,
.page-main .wp-block-post-content h3,
.page-main .wp-block-post-content h4 {
	color: #00415f;
	line-height: 1.3;
}

.page-main .wp-block-post-content h2 {
	font-size: clamp(24px, 2.4vw, 32px);
	margin-top: 48px;
}

.page-main .wp-block-post-content h3 {
	font-size: clamp(19px, 1.8vw, 23px);
	margin-top: 36px;
}

.page-main .wp-block-post-content h4 {
	font-size: 18px;
	margin-top: 28px;
}

.page-main .wp-block-post-content a {
	color: #00415f;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color .25s;
}

.page-main .wp-block-post-content a:hover {
	color: #cfac61;
}

.page-main .wp-block-post-content ul,
.page-main .wp-block-post-content ol {
	margin: 0;
	padding-left: 22px;
}

.page-main .wp-block-post-content li + li {
	margin-top: 8px;
}

.page-main .wp-block-post-content blockquote {
	margin: 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid #cfac61;
	color: #2b2b28;
}

.page-main .wp-block-post-content figure {
	margin: 0;
}

.page-main .wp-block-post-content img {
	height: auto;
}

.page-main .wp-block-post-content hr {
	border: 0;
	border-top: 1px solid #e2e2de;
	margin: 44px 0;
}

.page-main .wp-block-post-content table {
	width: 100%;
	border-collapse: collapse;
}

.page-main .wp-block-post-content th,
.page-main .wp-block-post-content td {
	border: 1px solid #e2e2de;
	padding: 12px 16px;
	text-align: left;
}

.page-main .wp-block-post-content th {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #00415f;
	background: #f4f4f2;
}

/* ==========================================================================
   Mobil yatay tasma duzeltmesi (Claude)
   ========================================================================== */

@media (max-width: 600px) {
	.featured-project__card,
	.kurumsal-history,
	.vision-mission,
	.ongoing-card,
	.completed-card,
	.proje-about__inner,
	.plan-panel__grid,
	.sektor-overview__inner,
	.contact-section__inner,
	.proje-gallery__grid,
	.tech-specs__grid,
	.request-form {
		grid-template-columns: minmax(0, 1fr);
	}

	.featured-project__card > *,
	.kurumsal-history > *,
	.vision-mission > *,
	.ongoing-card > *,
	.completed-card > *,
	.proje-about__inner > *,
	.plan-panel__grid > *,
	.sektor-overview__inner > *,
	.contact-section__inner > * {
		min-width: 0;
	}

	.sector-card--featured,
	.sectors-grid__rest,
	.sektor-card--featured,
	.sektor-grid__rest {
		min-width: 0;
	}

	.plan-tabs {
		flex-wrap: wrap;
	}
}
