/*
Theme Name: Sistemroot Child
Theme URI: https://sistemroot.com
Template: twentytwentyfive
Author: Sistemroot
Author URI: https://sistemroot.com
Description: Sistemroot kurumsal sitesi için Twenty Twenty-Five tabanlı özel block child tema. FSE mimarisiyle tüm tasarım theme.json ve patterns üzerinden yönetilir.
Version: 1.2.0
Requires at least: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sistemroot
Tags: business, one-page, full-site-editing, block-themes, blog, multilingual
*/

/* ============================================================
   SISTEMROOT CHILD THEME — Custom Styles
   Yazım sırası: base → bileşen → durum → responsive
   ============================================================ */

/* ------------------------------------------------------------
   1. GLOBAL RESET & SMOOTH SCROLL
   ------------------------------------------------------------ */
html {
	scroll-behavior: smooth;
}

/* Sticky header yüksekliğini karşılamak için anchor hedeflerinde üst boşluk */
[id] {
	scroll-margin-top: 80px;
}

/* ------------------------------------------------------------
   2. STICKY HEADER
   ------------------------------------------------------------ */
.sr-site-header {
	backdrop-filter: blur(12px) saturate(1.4);
	-webkit-backdrop-filter: blur(12px) saturate(1.4);
	transition: box-shadow 0.25s ease, background-color 0.25s ease;
	z-index: 9999 !important;
}

.sr-site-header.is-scrolled {
	box-shadow: 0 2px 20px rgba(11, 18, 32, 0.08);
}

.sr-main-nav .wp-block-navigation-item__content {
	color: var(--wp--preset--color--contrast);
	font-weight: 500;
	transition: color 0.2s ease;
	text-decoration: none;
}

.sr-main-nav .wp-block-navigation-item__content:hover,
.sr-main-nav .wp-block-navigation-item__content:focus-visible {
	color: var(--wp--preset--color--primary);
}

/* ------------------------------------------------------------
   3. HİZMET KARTI HOVER EFEKTİ
   ------------------------------------------------------------ */
.sr-service-card {
	transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
	            box-shadow 0.28s ease;
	will-change: transform;
}

.sr-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12),
	            0 4px 16px rgba(11, 18, 32, 0.06);
}

@media (prefers-reduced-motion: reduce) {
	.sr-service-card {
		transition: none;
	}
	.sr-service-card:hover {
		transform: none;
	}
}

/* ------------------------------------------------------------
   4. SÜREÇ (PROCESS) TİMELİNE
   ------------------------------------------------------------ */
.sr-process-timeline {
	gap: var(--wp--preset--spacing--30);
}

.sr-process-step {
	flex: 1;
	min-width: 220px;
	background-color: var(--wp--preset--color--surface);
	position: relative;
	transition: box-shadow 0.2s ease;
}

.sr-process-step:hover {
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.1);
}

/* Adımlar arası konektör (masaüstü) */
@media (min-width: 782px) {
	.sr-process-timeline {
		position: relative;
	}
	.sr-process-timeline::before {
		content: '';
		position: absolute;
		top: 52px;
		left: calc(var(--wp--preset--spacing--30) + 40px);
		right: calc(var(--wp--preset--spacing--30) + 40px);
		height: 2px;
		background: linear-gradient(
			90deg,
			var(--wp--preset--color--primary) 0%,
			var(--wp--preset--color--accent) 100%
		);
		z-index: 0;
		pointer-events: none;
	}
}

.sr-step-badge {
	position: relative;
	z-index: 1;
}

/* ------------------------------------------------------------
   5. FİYATLANDIRMA KARTLARI
   ------------------------------------------------------------ */
.sr-pricing-grid {
	align-items: flex-start;
}

/* ≥992px: 3 paket her zaman yan yana (wrap kapalı), eşit dağıt */
@media (min-width: 992px) {
	.sr-pricing-grid {
		flex-wrap: nowrap;
	}
	.sr-pricing-grid > .sr-pricing-card {
		flex: 1 1 0;
		min-width: 0;
		max-width: 360px;
	}
}

/* Large+ büyük gradient CTA kartı */
.sr-pricing-cta {
	box-shadow: 0 20px 50px rgba(11, 18, 32, 0.18);
}

.sr-cta-content {
	max-width: 720px;
}

.sr-cta-badge {
	display: inline-block;
	padding: 5px 16px;
	border-radius: 50px;
	background: rgba(20, 184, 166, 0.18);
	border: 1px solid rgba(103, 232, 249, 0.45);
	color: #67e8f9;
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.sr-cta-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.sr-cta-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.83rem;
	font-weight: 500;
	white-space: nowrap;
}

.sr-pricing-cta .wp-block-button .wp-block-button__link {
	background: #ffffff;
	color: var(--wp--preset--color--contrast);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.sr-pricing-cta .wp-block-button .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

/* Sol içerik + sağ buton aynı satırda */
@media (min-width: 768px) {
	.sr-pricing-cta {
		flex-wrap: nowrap;
		gap: var(--wp--preset--spacing--40);
	}
	.sr-pricing-cta > .sr-cta-content {
		flex: 1 1 auto;
		min-width: 0;
	}
	.sr-pricing-cta > .wp-block-buttons {
		flex: 0 0 auto;
	}
}

@media (max-width: 600px) {
	.sr-pricing-cta {
		padding: var(--wp--preset--spacing--40) !important;
	}
	.sr-cta-content :where(h3) {
		font-size: 1.4rem !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sr-pricing-cta .wp-block-button .wp-block-button__link:hover {
		transform: none;
	}
}

.sr-pricing-card {
	transition: box-shadow 0.28s ease,
	            transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
	            border-color 0.28s ease;
}

/* Small ve Large — hover'da kendini belli etsin (kalkma + mavi border + glow) */
.sr-pricing-card:not(.sr-pricing-popular):hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(14, 165, 233, 0.18),
	            0 6px 18px rgba(11, 18, 32, 0.08);
	border-color: var(--wp--preset--color--primary) !important;
}

/* Popüler kart vurgusu — varsayılan kalkık duruyor (inline translateY -12px) */
.sr-pricing-popular {
	box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
}

.sr-pricing-popular:hover {
	box-shadow: 0 24px 64px rgba(14, 165, 233, 0.32);
	transform: translateY(-16px) !important;
}

/* Pricing kart içindeki "Teklif Al" butonları — hover'da dikkat çekici */
.sr-pricing-card .wp-block-button__link {
	transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
	            box-shadow 0.28s ease,
	            background-color 0.25s ease,
	            color 0.25s ease;
	position: relative;
	overflow: hidden;
}

/* Small ve Large butonları — surface bg → hover'da primary bg + lift + glow */
.sr-pricing-card:not(.sr-pricing-popular) .wp-block-button__link:hover,
.sr-pricing-card:not(.sr-pricing-popular) .wp-block-button__link:focus-visible {
	background-color: var(--wp--preset--color--primary) !important;
	color: var(--wp--preset--color--base) !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35),
	            0 4px 10px rgba(11, 18, 32, 0.12);
}

/* Popüler kart butonu (zaten primary) — hover'da daha koyu + lift + glow */
.sr-pricing-popular .wp-block-button__link:hover,
.sr-pricing-popular .wp-block-button__link:focus-visible {
	background-color: var(--wp--preset--color--primary-dark) !important;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(14, 165, 233, 0.45),
	            0 5px 12px rgba(11, 18, 32, 0.15);
}

@media (prefers-reduced-motion: reduce) {
	.sr-pricing-card .wp-block-button__link {
		transition: background-color 0.2s ease, color 0.2s ease;
	}
	.sr-pricing-card .wp-block-button__link:hover {
		transform: none !important;
	}
}

.sr-popular-badge {
	display: inline-flex;
	align-items: center;
}

.sr-feature-list {
	list-style: none;
	padding-left: 0;
}

.sr-feature-list li {
	padding-left: 1.5rem;
	position: relative;
}

.sr-feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--wp--preset--color--accent);
	font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
	.sr-pricing-card,
	.sr-pricing-popular {
		transition: none;
	}
	.sr-pricing-popular:hover,
	.sr-pricing-card:hover {
		transform: none;
	}
}

/* ------------------------------------------------------------
   6. FAQ AKORDIYON
   ------------------------------------------------------------ */
.sr-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.sr-faq-item {
	background-color: #ffffff;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sr-faq-item[open] {
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
}

.sr-faq-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	color: var(--wp--preset--color--contrast);
	list-style: none;
	user-select: none;
	transition: color 0.2s ease;
	font-family: var(--wp--preset--font-family--display);
}

.sr-faq-summary::-webkit-details-marker {
	display: none;
}

.sr-faq-summary:hover {
	color: var(--wp--preset--color--primary);
}

.sr-faq-summary:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
}

.sr-faq-icon {
	width: 22px;
	height: 22px;
	min-width: 22px;
	border-radius: 50%;
	background-color: var(--wp--preset--color--surface);
	position: relative;
	transition: background-color 0.2s ease, transform 0.3s ease;
}

.sr-faq-icon::before,
.sr-faq-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--wp--preset--color--muted);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s ease;
}

.sr-faq-icon::before {
	width: 10px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.sr-faq-icon::after {
	width: 2px;
	height: 10px;
	transform: translate(-50%, -50%);
}

details[open] .sr-faq-icon {
	background-color: var(--wp--preset--color--primary);
	transform: rotate(45deg);
}

details[open] .sr-faq-icon::before,
details[open] .sr-faq-icon::after {
	background-color: #ffffff;
}

.sr-faq-body {
	padding: 0 1.5rem 1.25rem;
	color: var(--wp--preset--color--muted);
	font-size: 0.95rem;
	line-height: 1.75;
	border-top: 1px solid var(--wp--preset--color--border);
	margin-top: -0.25rem;
	padding-top: 1rem;
}

.sr-faq-body p {
	margin: 0;
}

@media (prefers-reduced-motion: reduce) {
	.sr-faq-icon,
	.sr-faq-icon::before,
	.sr-faq-icon::after {
		transition: none;
	}
}

/* ------------------------------------------------------------
   7. BLOG KARTI
   ------------------------------------------------------------ */
.sr-blog-card {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sr-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(11, 18, 32, 0.08);
}

.sr-blog-card .wp-block-post-featured-image img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.sr-blog-card .wp-block-read-more {
	color: var(--wp--preset--color--primary);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	transition: gap 0.2s ease;
}

.sr-blog-card .wp-block-read-more::after {
	content: '→';
	transition: transform 0.2s ease;
}

.sr-blog-card:hover .wp-block-read-more::after {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.sr-blog-card,
	.sr-blog-card .wp-block-read-more::after {
		transition: none;
	}
	.sr-blog-card:hover {
		transform: none;
	}
}

/* ------------------------------------------------------------
   8. WHATSAPP FAB (Floating Action Button)
   ------------------------------------------------------------ */
.sr-whatsapp-fab {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9998;
}

.sr-whatsapp-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #25d366;
	color: #ffffff;
	text-decoration: none;
	border-radius: 50px;
	padding: 14px 20px 14px 16px;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45),
	            0 2px 8px rgba(0, 0, 0, 0.12);
	transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
	            box-shadow 0.25s ease,
	            background-color 0.2s ease;
	font-weight: 600;
	font-size: 0.9rem;
	font-family: var(--wp--preset--font-family--sans);
	white-space: nowrap;
	line-height: 1;
}

.sr-whatsapp-btn:hover,
.sr-whatsapp-btn:focus-visible {
	transform: scale(1.07) translateY(-3px);
	box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5),
	            0 4px 12px rgba(0, 0, 0, 0.14);
	background-color: #22c35e;
	color: #ffffff;
}

.sr-whatsapp-btn:focus-visible {
	outline: 3px solid #25d366;
	outline-offset: 3px;
}

.sr-whatsapp-label {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
	.sr-whatsapp-btn {
		transition: background-color 0.2s ease;
	}
	.sr-whatsapp-btn:hover {
		transform: none;
	}
}

/* Mobilde yalnızca ikon göster */
@media (max-width: 599px) {
	.sr-whatsapp-fab {
		bottom: 20px;
		right: 20px;
	}
	.sr-whatsapp-btn {
		border-radius: 50%;
		padding: 16px;
		width: 58px;
		height: 58px;
		justify-content: center;
	}
	.sr-whatsapp-label {
		display: none;
	}
}

/* ------------------------------------------------------------
   9. REFERANSLAR — MÜŞTERİ LOGO GRİD
   ------------------------------------------------------------ */
.sr-clients-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.sr-client-logo {
	position: relative;
	overflow: hidden;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: auto !important;
	aspect-ratio: 5 / 3 !important;
	box-sizing: border-box !important;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid var(--wp--preset--color--border);
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	margin: 0 !important;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sr-client-logo::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--sr-from, #0ea5e9), var(--sr-to, #14b8a6));
	opacity: 0;
	transition: opacity 0.28s ease;
	z-index: 0;
}

.sr-client-logo img {
	position: relative;
	z-index: 1;
	max-width: 78%;
	max-height: 60%;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.6;
	transition: opacity 0.28s ease, filter 0.28s ease;
}

.sr-client-logo:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(11, 18, 32, 0.12);
	border-color: transparent;
}

.sr-client-logo:hover::before { opacity: 1; }
.sr-client-logo:hover img {
	opacity: 1;
	filter: brightness(0) invert(1);
}

.sr-client-logo--1 { --sr-from: #0ea5e9; --sr-to: #0369a1; }
.sr-client-logo--2 { --sr-from: #14b8a6; --sr-to: #0d9488; }
.sr-client-logo--3 { --sr-from: #0369a1; --sr-to: #14b8a6; }
.sr-client-logo--4 { --sr-from: #0b1220; --sr-to: #0369a1; }

@media (max-width: 900px) {
	.sr-clients-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}

@media (max-width: 600px) {
	.sr-clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
	.sr-client-logo,
	.sr-client-logo::before,
	.sr-client-logo img { transition: none; }
	.sr-client-logo:hover { transform: none; }
}

/* Marquee modu (17+ logo) — sonsuz yatay kayma */
.sr-clients-marquee {
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.sr-clients-row {
	display: flex;
	gap: 18px;
	width: max-content;
	animation: sr-marquee-scroll 50s linear infinite;
	will-change: transform;
}

.sr-clients-row + .sr-clients-row { margin-top: 18px; }
.sr-clients-row--reverse { animation-direction: reverse; }

.sr-clients-marquee:hover .sr-clients-row,
.sr-clients-marquee:focus-within .sr-clients-row {
	animation-play-state: paused;
}

.sr-clients-marquee .sr-client-logo {
	flex: 0 0 220px;
	aspect-ratio: 5 / 3;
}

@keyframes sr-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (max-width: 600px) {
	.sr-clients-marquee .sr-client-logo { flex: 0 0 160px; }
	.sr-clients-row { animation-duration: 35s; }
}

@media (prefers-reduced-motion: reduce) {
	.sr-clients-row { animation: none; }
}

/* ------------------------------------------------------------
   10. RESPONSIVE AYARLAR
   ------------------------------------------------------------ */

/* Tablet: <= 1024px */
@media (max-width: 1024px) {
	.sr-process-timeline::before {
		display: none;
	}

	.sr-pricing-popular {
		transform: translateY(0);
	}

	.sr-pricing-popular:hover {
		transform: translateY(-8px);
	}
}

/* Mobil: <= 782px (WordPress breakpoint) */
@media (max-width: 782px) {
	/* Hero kolonları dikey */
	.wp-block-cover .wp-block-columns {
		flex-direction: column;
	}
	.wp-block-cover .wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
	}

	/* Carousel mobilde altta */
	.sr-hero-carousel-col {
		order: -1;
		margin-bottom: var(--wp--preset--spacing--40);
	}

	/* FAQ iyileştirme */
	.sr-faq-summary {
		font-size: 0.925rem;
		padding: 1rem 1.25rem;
	}

	.sr-faq-body {
		padding: 0 1.25rem 1rem;
		padding-top: 0.875rem;
	}

	/* Fiyat kartları dikey sıra */
	.sr-pricing-grid {
		flex-direction: column;
		align-items: stretch;
	}

	.sr-pricing-popular {
		order: -1; /* Popüler kartı üste taşı */
		transform: none;
	}

	/* Hero sayaç satırı — 2x2 grid */
	.wp-block-cover .wp-block-group[style*="border-top"] {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		gap: var(--wp--preset--spacing--30) !important;
	}

	/* Blog grid tek kolon */
	.wp-block-post-template.is-flex-container {
		grid-template-columns: 1fr;
	}

	/* Hizmet kartları 2 kolon */
	.sr-services-grid {
		grid-template-columns: 1fr 1fr !important;
	}

	/* Process timeline dikey */
	.sr-process-timeline {
		flex-direction: column;
	}
	.sr-process-step {
		min-width: 100%;
	}

	/* Footer kolonları stack */
	.wp-block-group.alignwide.is-layout-flex {
		flex-wrap: wrap;
	}

	/* Header — logo + burger menu yan yana */
	.sr-logo {
		max-height: 44px;
	}

	/* Dil switcher kompakt */
	.sr-lang-switcher {
		font-size: 0.72rem;
		padding: 3px;
	}
	.sr-lang-switcher a {
		padding: 3px 8px;
	}
}

/* Küçük mobil: <= 480px */
@media (max-width: 480px) {
	[id] {
		scroll-margin-top: 70px;
	}

	.sr-pricing-popular {
		transform: none;
	}

	/* Hizmet kartları tek kolon */
	.sr-services-grid {
		grid-template-columns: 1fr !important;
	}

	/* Hero sayaçlar tek kolonda küçültülmüş */
	.wp-block-cover h3[style*="2.5rem"] {
		font-size: 1.85rem !important;
	}

	/* Header logo daha küçük */
	.sr-logo {
		max-height: 38px;
	}

	/* Hero başlık daha sıkı */
	.wp-block-cover h1.has-huge-font-size {
		font-size: clamp(1.85rem, 1.5rem + 2vw, 2.4rem) !important;
	}

	/* Buton padding'leri küçült */
	.wp-block-button__link {
		padding: 12px 22px !important;
		font-size: 0.92rem !important;
	}

	/* CF7 form alanları kompakt */
	.wpcf7-form input,
	.wpcf7-form select,
	.wpcf7-form textarea {
		padding: 0.7rem 0.85rem;
		font-size: 0.9rem;
	}

	/* WhatsApp FAB mobilde küçült */
	.sr-whatsapp-fab {
		width: 52px !important;
		height: 52px !important;
		bottom: 16px !important;
		right: 16px !important;
	}

	/* Dil switcher — sadece ikon hissi */
	.sr-lang-switcher {
		font-size: 0.7rem;
	}
	.sr-lang-switcher a {
		padding: 2px 7px;
	}
}

/* Çok küçük: <= 360px (eski Android) */
@media (max-width: 360px) {
	html {
		font-size: 14.5px;
	}
	.wp-block-button__link {
		padding: 10px 18px !important;
		font-size: 0.88rem !important;
	}
}

/* ------------------------------------------------------------
   11. FOCUS VISIBLE — ERİŞİLEBİLİRLİK
   ------------------------------------------------------------ */
:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 3px;
	border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 3px;
}

/* ------------------------------------------------------------
   12. SITE-TITLE OVERRIDE (header)
   ------------------------------------------------------------ */
.sr-site-header .wp-block-site-title a {
	text-decoration: none;
	color: var(--wp--preset--color--contrast);
	transition: color 0.2s ease;
}

.sr-site-header .wp-block-site-title a:hover {
	color: var(--wp--preset--color--primary);
}

/* ------------------------------------------------------------
   13. HEADER JS — Scroll class toggle (küçük script bloğu)
   ------------------------------------------------------------ */
/* Bu kural JavaScript çalışmadan da header'ı işlevsel kılar */

/* ------------------------------------------------------------
   13a. HERO CAROUSEL — Auto-rotating slider
   ------------------------------------------------------------ */
/* HERO SLOGAN — Glass-pill badge, premium tech feel */
.sr-hero-title-wrap {
	text-align: center;
	margin-bottom: var(--wp--preset--spacing--50);
	position: relative;
	z-index: 5;
}

.wp-block-cover .sr-hero-title,
.wp-block-cover h1.sr-hero-title,
h1.sr-hero-title {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 12px;
	visibility: visible !important;
	opacity: 1 !important;
	width: auto !important;
	max-width: 92% !important;
	margin: 0 auto !important;
	padding: 13px 30px !important;
	text-align: center;
	font-family: var(--wp--preset--font-family--display) !important;
	font-size: clamp(0.95rem, 0.8rem + 0.55vw, 1.3rem) !important;
	font-weight: 700 !important;
	letter-spacing: 0.01em !important;
	line-height: 1.3 !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	background: rgba(11, 18, 32, 0.4) !important;
	-webkit-backdrop-filter: blur(20px) saturate(1.6);
	backdrop-filter: blur(20px) saturate(1.6);
	border: 1px solid rgba(103, 232, 249, 0.28) !important;
	border-radius: 999px !important;
	text-shadow: none !important;
	box-shadow:
		0 14px 36px -12px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		0 0 40px -8px rgba(103, 232, 249, 0.35);
	position: relative;
}

/* Sparkle emoji ile pulse animasyonu */
.sr-hero-title__icon {
	display: inline-block;
	font-size: 1.1em;
	line-height: 1;
	filter: drop-shadow(0 0 8px rgba(103, 232, 249, 0.6));
	animation: srSparklePulse 2.6s ease-in-out infinite;
}

.sr-hero-title__text {
	display: inline-block;
	background: linear-gradient(120deg, #ffffff 0%, #67e8f9 60%, #ffffff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Fallback: gradient text desteklenmezse beyaz */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
	.sr-hero-title__text {
		color: #ffffff;
		-webkit-text-fill-color: #ffffff;
		background: none;
	}
}

@keyframes srSparklePulse {
	0%, 100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
	50% {
		transform: scale(1.18) rotate(12deg);
		opacity: 0.85;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sr-hero-title__icon {
		animation: none;
	}
}

@media (max-width: 480px) {
	.wp-block-cover .sr-hero-title,
	.wp-block-cover h1.sr-hero-title,
	h1.sr-hero-title {
		padding: 11px 22px !important;
		font-size: 0.88rem !important;
		gap: 8px;
	}
}

.sr-hero-carousel {
	position: relative;
	width: 100%;
	border-radius: 16px;
	overflow: visible;
	isolation: isolate;
}

/* Yatay banner carousel — yasal banner alignwide ile aynı genişlik (1280px) */
.wp-block-cover .sr-hero-carousel.sr-hero-carousel--centered.alignfull,
.sr-hero-carousel.sr-hero-carousel--centered {
	width: 100% !important;
	max-width: var(--wp--style--global--wide-size, 1280px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	margin-top: 5px;
	margin-bottom: 40px;
	box-sizing: border-box;
}

.sr-hero-actions {
	display: flex;
	justify-content: center;
	margin: var(--wp--preset--spacing--40) auto 12px !important;
}

/* Solid beyaz CTA — koyu navy metin, marka uyumu (beyaz/mavi tonları) */
a.sr-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #ffffff !important;
	color: #0b1220 !important;
	-webkit-text-fill-color: #0b1220 !important;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem);
	letter-spacing: 0.01em;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 12px;
	border: 2px solid #ffffff;
	box-shadow:
		0 14px 32px -10px rgba(0, 0, 0, 0.45),
		0 4px 14px -4px rgba(14, 165, 233, 0.5);
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
	cursor: pointer;
}

a.sr-hero-cta:hover,
a.sr-hero-cta:focus-visible {
	background: var(--wp--preset--color--primary) !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	border-color: var(--wp--preset--color--primary) !important;
	transform: translateY(-2px);
	box-shadow:
		0 20px 44px -10px rgba(14, 165, 233, 0.6),
		0 6px 16px -2px rgba(0, 0, 0, 0.4);
	outline: none;
}

a.sr-hero-cta span {
	transition: transform 0.22s ease;
	display: inline-block;
}

a.sr-hero-cta:hover span {
	transform: translateX(0);
}

/* Stats label varyantı için emoji */
a.sr-hero-cta__emoji,
a.sr-hero-cta .sr-hero-cta__emoji {
	font-size: 1.2em;
	line-height: 1;
	display: inline-block;
	transform: none !important;
}

a.sr-hero-cta:hover .sr-hero-cta__emoji {
	transform: scale(1.15) rotate(-8deg) !important;
	transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-reduced-motion: reduce) {
	a.sr-hero-cta,
	a.sr-hero-cta span {
		transition: none;
	}
	a.sr-hero-cta:hover {
		transform: none;
	}
}

/* Hero stats — koyu glass-card backdrop, beyaz metin %100 net */
.sr-hero-stats {
	display: flex !important;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 16px;
	max-width: 1100px;
	margin-left: auto !important;
	margin-right: auto !important;
	margin-top: 0 !important;
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40) !important;
	background: rgba(11, 18, 32, 0.55) !important;
	backdrop-filter: blur(14px) saturate(1.2);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	border-radius: 18px !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	box-shadow:
		0 14px 40px -16px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(103, 232, 249, 0.08) inset;
	scroll-margin-top: 80px;
}

.sr-hero-stats h3,
.sr-hero-stats .wp-block-heading {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	font-family: var(--wp--preset--font-family--display) !important;
	font-weight: 800 !important;
	font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.5rem) !important;
	line-height: 1 !important;
	margin: 0 !important;
	background: linear-gradient(135deg, #ffffff 0%, #67e8f9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent !important;
}

/* Fallback: tarayıcı background-clip:text desteklemezse beyaz görünür */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
	.sr-hero-stats h3,
	.sr-hero-stats .wp-block-heading {
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
		background: none !important;
	}
}

.sr-hero-stats p {
	color: rgba(255, 255, 255, 0.85) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	margin-top: 6px !important;
}

@media (max-width: 781px) {
	.sr-hero-stats {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		gap: var(--wp--preset--spacing--30);
		padding: var(--wp--preset--spacing--20) !important;
	}
	.sr-hero-stats h3,
	.sr-hero-stats .wp-block-heading {
		font-size: 1.6rem !important;
	}
}

.sr-hero-carousel::before {
	content: '';
	position: absolute;
	inset: -40px;
	background: radial-gradient(60% 60% at 50% 50%, rgba(20, 184, 166, 0.18) 0%, rgba(14, 165, 233, 0) 70%);
	z-index: -1;
	filter: blur(20px);
	pointer-events: none;
}

.sr-hero-carousel__viewport {
	position: relative;
	width: 100%;
	aspect-ratio: 12 / 5;
	border-radius: 16px;
	overflow: hidden;
	background: #0b1220;
	/* Modern multi-layer shadow for elegance */
	box-shadow:
		0 30px 60px -20px rgba(0, 0, 0, 0.6),
		0 18px 30px -12px rgba(14, 165, 233, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Yatay hero banner — daha hacimli (12:5 ≈ 2.4:1) */
.sr-hero-carousel--centered .sr-hero-carousel__viewport {
	aspect-ratio: 12 / 5;
}

/* Mobilde aspect biraz daha kare olsun, içerik nefes alsın */
@media (max-width: 781px) {
	.sr-hero-carousel__viewport,
	.sr-hero-carousel--centered .sr-hero-carousel__viewport {
		aspect-ratio: 4 / 3;
	}
}

/* Subtle gradient ring around carousel — premium vibe */
.sr-hero-carousel--centered::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 18px;
	padding: 2px;
	background: linear-gradient(135deg,
		rgba(103, 232, 249, 0.6) 0%,
		rgba(20, 184, 166, 0.3) 50%,
		rgba(14, 165, 233, 0.6) 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 1;
}

.sr-hero-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
	            visibility 0s linear 0.7s,
	            transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(1.02);
	will-change: opacity, transform;
}

.sr-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
	            visibility 0s linear 0s,
	            transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr-hero-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sr-hero-slide__caption {
	position: absolute;
	left: 20px;
	bottom: 20px;
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	background: rgba(11, 18, 32, 0.78);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(103, 232, 249, 0.25);
	padding: 10px 16px;
	border-radius: 12px;
	transform: translateY(8px);
	opacity: 0;
	transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
	max-width: calc(100% - 40px);
}

.sr-hero-slide.is-active .sr-hero-slide__caption {
	opacity: 1;
	transform: translateY(0);
}

.sr-hero-slide__kicker {
	color: #67e8f9;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.sr-hero-slide__title {
	color: #fff;
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.2;
}

/* Progress bar */
.sr-hero-carousel__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
	border-bottom-left-radius: 22px;
	border-bottom-right-radius: 22px;
}

.sr-hero-carousel__progress-bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #0ea5e9 0%, #14b8a6 100%);
	transform-origin: left;
	transition: width 0.1s linear;
}

.sr-hero-carousel.is-paused .sr-hero-carousel__progress-bar {
	transition: none;
}

/* Indicator dots */
.sr-hero-carousel__dots {
	position: absolute;
	bottom: -34px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	gap: 8px;
	padding: 6px 10px;
	background: rgba(11, 18, 32, 0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.sr-hero-dot {
	appearance: none;
	-webkit-appearance: none;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, width 0.3s ease, transform 0.2s ease;
}

.sr-hero-dot:hover,
.sr-hero-dot:focus-visible {
	background: rgba(255, 255, 255, 0.6);
	outline: none;
	transform: scale(1.2);
}

.sr-hero-dot.is-active {
	background: linear-gradient(90deg, #0ea5e9 0%, #14b8a6 100%);
	width: 24px;
	border-radius: 4px;
}

@media (max-width: 781px) {
	.sr-hero-carousel__viewport,
	.sr-hero-carousel--centered .sr-hero-carousel__viewport {
		aspect-ratio: 16 / 11;
		border-radius: 18px;
	}
	.sr-hero-carousel--centered {
		max-width: 100%;
	}
	.sr-hero-title {
		font-size: clamp(1.9rem, 1.4rem + 3vw, 3rem) !important;
	}
	.sr-hero-slide__caption {
		left: 14px;
		bottom: 14px;
		padding: 8px 12px;
	}
	.sr-hero-slide__title {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.sr-hero-carousel__viewport,
	.sr-hero-carousel--centered .sr-hero-carousel__viewport {
		aspect-ratio: 4 / 3;
	}
	.sr-hero-slide__kicker {
		font-size: 0.62rem;
	}
	.sr-hero-slide__title {
		font-size: 0.85rem;
	}
	.sr-hero-carousel__dots {
		bottom: -28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sr-hero-slide,
	.sr-hero-slide__caption,
	.sr-hero-carousel__progress-bar {
		transition: none !important;
		transform: none !important;
	}
}

/* ------------------------------------------------------------
   13b. LOGO + DİL SWITCHER
   ------------------------------------------------------------ */
.sr-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
	transition: opacity 0.2s ease;
}

.sr-logo-link:hover,
.sr-logo-link:focus-visible {
	opacity: 0.85;
}

.sr-logo {
	display: block;
	height: auto;
	width: auto;
	max-height: 52px;
}

@media (max-width: 600px) {
	.sr-logo {
		max-height: 42px;
	}
}

.sr-lang-switcher {
	list-style: none;
	margin: 0;
	padding: 4px;
	display: inline-flex;
	gap: 2px;
	background: var(--wp--preset--color--surface);
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
}

.sr-lang-switcher li {
	margin: 0;
}

.sr-lang-switcher a {
	display: block;
	padding: 4px 10px;
	border-radius: 6px;
	color: var(--wp--preset--color--muted);
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease;
	letter-spacing: 0.05em;
}

.sr-lang-switcher .is-current a,
.sr-lang-switcher a:hover,
.sr-lang-switcher a:focus-visible {
	background: var(--wp--preset--color--primary);
	color: #fff;
	outline: none;
}

/* ------------------------------------------------------------
   14. CONTACT FORM 7 — koyu arka plan üzerinde görünüm
   ------------------------------------------------------------ */
/* Wrapper sıfırlama — kart içinde sıkı oturum */
.wpcf7 { margin: 0; padding: 0; }
.wpcf7-form { margin: 0; }
.wpcf7-form > .sr-form-row:first-child { margin-top: 0; }

/* Honeypot — kullanıcıdan ve görsel akıştan tamamen gizle, ama bot doldursun */
.sr-honeypot-row {
	position: absolute !important;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

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

.wpcf7-form label {
	display: block;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.4rem;
}

.wpcf7-form .sr-req {
	color: var(--wp--preset--color--accent);
	margin-left: 2px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

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

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--accent);
	background: rgba(255, 255, 255, 0.09);
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}

.wpcf7-form select option {
	background: var(--wp--preset--color--contrast);
	color: #fff;
}

.wpcf7-form .wpcf7-acceptance {
	display: block;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
	display: block;
}

.wpcf7-form .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-weight: 400;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	cursor: pointer;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
	margin-top: 4px;
	accent-color: var(--wp--preset--color--accent);
	flex: 0 0 auto;
}

.wpcf7-form .wpcf7-acceptance a {
	color: var(--wp--preset--color--accent-soft);
	text-decoration: underline;
}

.wpcf7-form .sr-form-submit {
	margin-top: 1.5rem;
}

.wpcf7-form input.sr-btn-primary,
.wpcf7-form .sr-btn-primary {
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--contrast);
	border: none;
	padding: 0.95rem 2rem;
	border-radius: 10px;
	font-weight: 700;
	font-family: var(--wp--preset--font-family--display);
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	width: 100%;
}

.wpcf7-form input.sr-btn-primary:hover,
.wpcf7-form .sr-btn-primary:hover {
	background: var(--wp--preset--color--accent-soft);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(20, 184, 166, 0.32);
}

.wpcf7-form .wpcf7-not-valid-tip {
	color: #fca5a5;
	font-size: 0.82rem;
	margin-top: 0.25rem;
	display: block;
}

.wpcf7-form .wpcf7-response-output {
	border-radius: 10px;
	padding: 1rem 1.25rem;
	font-size: 0.95rem;
	margin-top: 1rem !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.wpcf7-form.sent .wpcf7-response-output {
	background: rgba(20, 184, 166, 0.15);
	color: #a7f3d0;
	border-color: rgba(20, 184, 166, 0.4) !important;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
	background: rgba(239, 68, 68, 0.15);
	color: #fecaca;
	border-color: rgba(239, 68, 68, 0.4) !important;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-form input.sr-btn-primary:hover,
	.wpcf7-form .sr-btn-primary:hover {
		transform: none;
	}
}

/* =========================================================
   HERO SLIDESHOW — sade fade slider, KVKK alignwide ile aynı
   ========================================================= */
.sr-hero-slideshow {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 12 / 5;
	border-radius: 16px;
	overflow: hidden;
	background: #0b1220;
	box-shadow:
		0 30px 60px -20px rgba(0, 0, 0, 0.6),
		0 18px 30px -12px rgba(14, 165, 233, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
	isolation: isolate;
}

.sr-hero-slideshow__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity;
}

.sr-hero-slideshow__img.is-active {
	opacity: 1;
}

.sr-hero-slideshow__caption {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
	display: grid;
	justify-items: start;
}

.sr-hero-slideshow__caption-text {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	width: max-content;
	max-width: 100%;
	background: rgba(11, 18, 32, 0.78);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(103, 232, 249, 0.25);
	padding: 12px 20px;
	border-radius: 12px;
	color: #ffffff;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.15rem);
	line-height: 1.2;
	opacity: 0;
	transition: opacity 0.5s ease 0.15s;
	white-space: nowrap;
}

.sr-hero-slideshow__caption-text.is-active {
	opacity: 1;
}

/* Slideshow prev/next ok butonları */
.sr-hero-slideshow__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(11, 18, 32, 0.65);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	opacity: 0;
	transition:
		opacity 0.25s ease,
		background 0.25s ease,
		transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.25s ease;
	box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.5);
}

.sr-hero-slideshow__nav--prev { left: 18px; }
.sr-hero-slideshow__nav--next { right: 18px; }

.sr-hero-slideshow:hover .sr-hero-slideshow__nav,
.sr-hero-slideshow:focus-within .sr-hero-slideshow__nav {
	opacity: 1;
}

.sr-hero-slideshow__nav:hover,
.sr-hero-slideshow__nav:focus-visible {
	background: var(--wp--preset--color--primary, #0369a1);
	border-color: var(--wp--preset--color--primary, #0369a1);
	box-shadow: 0 12px 28px -6px rgba(14, 165, 233, 0.6);
	outline: none;
}

.sr-hero-slideshow__nav--prev:hover { transform: translateY(-50%) translateX(-3px) scale(1.08); }
.sr-hero-slideshow__nav--next:hover { transform: translateY(-50%) translateX(3px)  scale(1.08); }

/* Mobilde dokunmatik kullanıcılar için her zaman görünür + biraz küçük */
@media (max-width: 781px), (hover: none) {
	.sr-hero-slideshow__nav {
		opacity: 0.85;
		width: 40px;
		height: 40px;
	}
	.sr-hero-slideshow__nav--prev { left: 10px; }
	.sr-hero-slideshow__nav--next { right: 10px; }
}

@media (max-width: 781px) {
	/* Mobil: oklar yok, auto-advance, caption ALT-DIŞINDA koyu frosted kart sol hizalı */
	.sr-hero-slideshow {
		aspect-ratio: 12 / 5;
		overflow: visible !important;
		border-radius: 14px;
		margin-bottom: 56px !important;
		box-shadow:
			0 18px 36px -16px rgba(0, 0, 0, 0.55),
			0 8px 18px -8px rgba(14, 165, 233, 0.22),
			0 0 0 1px rgba(255, 255, 255, 0.06) inset;
	}
	.sr-hero-slideshow__img {
		object-fit: cover;
		object-position: center;
		border-radius: 14px;
	}
	/* Oklar mobilde tamamen gizli — sadece auto-advance */
	.sr-hero-slideshow__nav {
		display: none !important;
	}
	/* Caption container — sadece pozisyon + grid; arkaplan span'lerin üzerinde */
	.sr-hero-slideshow__caption {
		position: absolute !important;
		left: 0 !important;
		right: auto !important;
		bottom: auto !important;
		top: calc(100% + 8px) !important;
		transform: none !important;
		background: transparent !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
		border: none !important;
		padding: 0 !important;
		max-width: calc(100% - 24px) !important;
		display: grid !important;
		justify-items: start !important;
		z-index: 2 !important;
	}
	/* Her span KENDİ metnine göre boyutlansın — koyu kart span'in üzerinde */
	.sr-hero-slideshow__caption-text {
		grid-column: 1 / 2 !important;
		grid-row: 1 / 2 !important;
		justify-self: start !important;
		background: rgba(11, 18, 32, 0.78) !important;
		backdrop-filter: blur(12px) !important;
		-webkit-backdrop-filter: blur(12px) !important;
		border: 1px solid rgba(103, 232, 249, 0.25) !important;
		padding: 7px 12px !important;
		border-radius: 10px !important;
		font-family: var(--wp--preset--font-family--display) !important;
		font-size: 0.82rem !important;
		font-weight: 800 !important;
		line-height: 1.25 !important;
		white-space: nowrap !important;
		max-width: 100% !important;
		text-align: left !important;
		color: #ffffff !important;
		letter-spacing: 0 !important;
		width: max-content !important;
	}
}

/* =========================================================
   YASAL SAYFALAR (KVKK / Gizlilik / Çerez)
   - Featured image (banner) yumuşatma
   - Liste okunabilirliği
   - Paragraf nefes alanı
   ========================================================= */
.wp-block-post-featured-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.entry-content .wp-block-list,
.wp-block-post-content .wp-block-list {
	padding-left: 1.25rem;
}

.entry-content .wp-block-list li,
.wp-block-post-content .wp-block-list li {
	margin-bottom: 0.6em;
	line-height: 1.7;
}

.entry-content .wp-block-list li:last-child,
.wp-block-post-content .wp-block-list li:last-child {
	margin-bottom: 0;
}

.entry-content h3.wp-block-heading,
.wp-block-post-content h3.wp-block-heading {
	margin-top: 2em;
	margin-bottom: 0.6em;
}

.entry-content p,
.wp-block-post-content p {
	line-height: 1.75;
}

/* =========================================================
   EFEKTLER — yanıp sönen + hover'da parlayan
   ========================================================= */

/* 1) WhatsApp FAB — sürekli pulse halkası */
.sr-whatsapp-btn {
	position: relative;
	isolation: isolate;
}

.sr-whatsapp-btn::before,
.sr-whatsapp-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: rgba(37, 211, 102, 0.55);
	z-index: -1;
	animation: srWaPulse 2.4s ease-out infinite;
	pointer-events: none;
}

.sr-whatsapp-btn::after {
	animation-delay: 1.2s;
}

@keyframes srWaPulse {
	0%   { transform: scale(1);   opacity: 0.7; }
	70%  { transform: scale(1.7); opacity: 0; }
	100% { transform: scale(1.7); opacity: 0; }
}

/* 2) POPÜLER badge — yumuşak parıltı pulse */
.sr-popular-badge {
	animation: srBadgePulse 2.2s ease-in-out infinite;
}

@keyframes srBadgePulse {
	0%, 100% {
		box-shadow:
			0 0 0 0 rgba(14, 165, 233, 0.55),
			0 4px 12px rgba(14, 165, 233, 0.35);
	}
	50% {
		box-shadow:
			0 0 0 12px rgba(14, 165, 233, 0),
			0 8px 22px rgba(14, 165, 233, 0.5);
	}
}

/* 3) CTA butonları — hover'da diagonal shine sweep */
.wp-block-button__link,
.sr-hero-cta,
.sr-cta-badge {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.wp-block-button__link::before,
.sr-hero-cta::before,
.sr-cta-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 80%;
	height: 100%;
	background: linear-gradient(
		100deg,
		transparent 0%,
		rgba(255, 255, 255, 0.55) 50%,
		transparent 100%
	);
	transform: skewX(-18deg);
	transition: left 0.75s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	z-index: 1;
}

.wp-block-button__link:hover::before,
.sr-hero-cta:hover::before,
.sr-cta-badge:hover::before {
	left: 130%;
}

/* 4) Hizmet kartı + Süreç adımı — hover: yukarı kalk + gradient border + ikon glow */
.sr-service-card,
.sr-process-step {
	position: relative;
	isolation: isolate;
	transition:
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.sr-service-card::before,
.sr-process-step::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	padding: 2px;
	background: linear-gradient(
		135deg,
		var(--wp--preset--color--primary, #0369a1) 0%,
		var(--wp--preset--color--accent, #14b8a6) 100%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
	z-index: 2;
}

.sr-service-card:hover,
.sr-process-step:hover {
	transform: translateY(-8px);
	box-shadow:
		0 28px 56px -12px rgba(14, 165, 233, 0.28),
		0 14px 28px -8px rgba(0, 0, 0, 0.14);
	border-color: transparent !important;
}

.sr-service-card:hover::before,
.sr-process-step:hover::before {
	opacity: 1;
}

/* Service kart içindeki büyük ikon (ilk paragraph) */
.sr-service-card > p:first-of-type {
	display: inline-block;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.sr-service-card:hover > p:first-of-type {
	transform: scale(1.15) rotate(-4deg);
	filter: drop-shadow(0 0 14px rgba(14, 165, 233, 0.55));
}

/* Process timeline — 4 kart desktop'ta tek satır yan yana */
.sr-process-timeline {
	flex-wrap: nowrap !important;
	gap: 20px;
}

/* Process step kart (sade HTML — padding/border/bg CSS'te) */
.sr-process-step {
	background: #ffffff;
	border: 1px solid var(--wp--preset--color--border, #e2e8f0);
	border-radius: 16px;
	padding: var(--wp--preset--spacing--40, 32px) var(--wp--preset--spacing--30, 24px);
	flex: 1 1 0;
	min-width: 0;
	max-width: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Mobilde tek sütun */
@media (max-width: 781px) {
	.sr-process-timeline {
		flex-wrap: wrap !important;
		gap: 16px;
	}
	.sr-process-step {
		flex: 1 1 100%;
		min-width: 100%;
	}
}

/* Yuvarlak gradient ikon kabarcığı — eski badge yerine */
.sr-step-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--wp--preset--color--primary, #0369a1) 0%,
		var(--wp--preset--color--accent, #14b8a6) 100%
	);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	line-height: 1;
	box-shadow: 0 6px 14px -4px rgba(14, 165, 233, 0.45);
	transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.sr-process-step:hover .sr-step-icon {
	transform: scale(1.12) rotate(-6deg);
	box-shadow: 0 10px 22px -4px rgba(14, 165, 233, 0.6);
	filter: drop-shadow(0 0 14px rgba(14, 165, 233, 0.45));
}

.sr-step-title {
	font-family: var(--wp--preset--font-family--display, inherit);
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.3;
	color: var(--wp--preset--color--contrast, #0b1220);
	margin: 0;
}

.sr-step-desc {
	color: var(--wp--preset--color--muted, #64748b);
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0;
}

/* 5) Stats sayıları + ikon + progress bar + hover */
.sr-hero-stats h3,
.sr-hero-stats .wp-block-heading {
	font-variant-numeric: tabular-nums;
}

/* Stat hücresi (sade flex column) — desktop'ta 4 yan yana eşit pay */
.sr-stat-cell {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 10px 6px;
	border-radius: 12px;
	transition: transform 0.35s ease, background 0.35s ease;
}

.sr-stat-cell:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.05);
}

/* Mini ikon (emoji) */
.sr-stat-icon {
	font-size: 1.55rem;
	line-height: 1;
	display: inline-block;
	filter: drop-shadow(0 0 8px rgba(103, 232, 249, 0.45));
	transition: transform 0.35s ease, filter 0.35s ease;
}

.sr-stat-cell:hover .sr-stat-icon {
	transform: scale(1.18) rotate(-6deg);
	filter: drop-shadow(0 0 14px rgba(103, 232, 249, 0.85));
}

/* Sayı (h3) — hover'da glow */
.sr-stat-cell h3 {
	transition: filter 0.35s ease;
}

.sr-stat-cell:hover h3 {
	filter: drop-shadow(0 0 18px rgba(103, 232, 249, 0.7));
}

/* Etiket (Tamamlanan Proje vb.) */
.sr-stat-label {
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	margin: 4px 0 0 !important;
	text-align: center;
}

/* Progress bar — count-up bitince animate dolar */
.sr-stat-progress {
	width: 80px;
	height: 4px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 2px;
	overflow: hidden;
	margin-top: 8px;
	position: relative;
}

.sr-stat-progress-bar {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #67e8f9 0%, #14b8a6 100%);
	box-shadow: 0 0 12px rgba(103, 232, 249, 0.55);
	transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* prefers-reduced-motion: tüm animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
	.sr-whatsapp-btn::before,
	.sr-whatsapp-btn::after,
	.sr-popular-badge {
		animation: none !important;
	}
	.wp-block-button__link::before,
	.sr-hero-cta::before,
	.sr-cta-badge::before {
		display: none;
	}
	.sr-service-card,
	.sr-service-card > p:first-of-type,
	.sr-process-step,
	.sr-step-icon,
	.sr-stat-cell,
	.sr-stat-icon,
	.sr-stat-cell h3,
	.sr-stat-progress-bar {
		transition: none !important;
	}
	.sr-service-card:hover,
	.sr-process-step:hover,
	.sr-stat-cell:hover {
		transform: none;
	}
	.sr-service-card:hover > p:first-of-type,
	.sr-process-step:hover .sr-step-icon,
	.sr-stat-cell:hover .sr-stat-icon,
	.sr-stat-cell:hover h3 {
		transform: none;
		filter: none;
		box-shadow: none;
	}
}

/* ============================================================
   MOBİL UYUMLULUK İYİLEŞTİRMELERİ — 2026-05-08
   Audit kapsamında tespit edilen mobil sorunları gideren toplu blok.
   ============================================================ */

/* Global yatay scroll koruması (sticky header z-index'i etkilemesin diye sadece body) */
html, body {
	overflow-x: hidden;
	max-width: 100%;
}
*, *::before, *::after {
	box-sizing: border-box;
}

/* Mobil: 782px ve altı genel ayarlar */
@media (max-width: 781px) {
	/* Header sağ grup — dil + buton sıkışmasın */
	.sr-site-header .wp-block-buttons .wp-block-button__link {
		padding: 9px 14px !important;
		font-size: 0.85rem !important;
		white-space: nowrap;
	}

	/* Hero stats grid'in container'ı taşmasın */
	.sr-hero-stats {
		max-width: 100% !important;
	}

	/* Hero slideshow caption — mobilde daha küçük, kırpma */
	/* Detaylı kurallar slideshow section'daki 781px bloğunda */

	/* Slideshow nav butonları — Apple HIG 44px touch target */
	.sr-hero-slideshow__nav {
		width: 44px !important;
		height: 44px !important;
	}

	/* Marquee fade — mobilde içeriği yutmasın */
	.sr-clients-marquee {
		-webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
		        mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
	}
}

/* Küçük mobil: 480px ve altı */
@media (max-width: 480px) {
	/* Header butonu — sadece kompakt metin */
	.sr-site-header .wp-block-buttons .wp-block-button__link {
		padding: 8px 12px !important;
		font-size: 0.82rem !important;
	}

	/* Header sağ grup boşluğu sıkıştır */
	.sr-site-header .wp-block-group[style*="--wp--preset--spacing--20"] {
		gap: 8px !important;
	}

	/* Dil switcher — touch target 44px'e yaklaşsın */
	.sr-lang-switcher a {
		padding: 8px 10px !important;
		font-size: 0.78rem;
	}

	/* Footer kolonları tam genişlik — taşma engeli */
	footer .wp-block-group.alignwide.is-layout-flex > .wp-block-group,
	.wp-block-template-part .wp-block-group.alignwide.is-layout-flex > .wp-block-group {
		min-width: 100% !important;
		max-width: 100% !important;
	}

	/* Footer copyright satırı ortalı + dikey stack */
	.wp-block-template-part .alignwide.is-layout-flex p[style*="rgba(255,255,255,0.4)"],
	.wp-block-template-part .alignwide.is-layout-flex p[style*="rgba(255,255,255,0.3)"] {
		text-align: center;
		width: 100%;
	}

	/* Contact form kartı padding — dar ekrana uyum */
	.wpcf7 {
		padding: 0;
	}
	#iletisim .wp-block-group[style*="background:rgba(255,255,255,0.08)"],
	#iletisim .wp-block-group[style*="background: rgba(255,255,255,0.08)"] {
		padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--20) !important;
		max-width: 100% !important;
	}

	/* Pricing kartı — iç padding sıkıştır */
	.sr-pricing-grid .wp-block-group {
		padding-left: var(--wp--preset--spacing--20) !important;
		padding-right: var(--wp--preset--spacing--20) !important;
	}

	/* Process step kart padding */
	.sr-process-step {
		padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--20) !important;
	}

	/* Tüm bölüm padding sıkıştır (yan boşluklar) */
	.wp-block-group.alignfull > .wp-block-group.alignwide,
	.wp-block-group.alignfull > .wp-block-group:not(.alignwide):not(.alignfull) {
		padding-left: var(--wp--preset--spacing--20);
		padding-right: var(--wp--preset--spacing--20);
	}

	/* Resim/iframe yatay sınır */
	img, iframe, video, svg {
		max-width: 100%;
		height: auto;
	}

	/* CF7 form kontrolleri — viewport'a sığması garantili */
	.wpcf7-form input,
	.wpcf7-form select,
	.wpcf7-form textarea {
		max-width: 100%;
		width: 100%;
	}
}

/* 360px ve altı (eski Android) */
@media (max-width: 360px) {
	.sr-site-header .wp-block-buttons .wp-block-button__link {
		padding: 7px 10px !important;
		font-size: 0.78rem !important;
	}
	.sr-lang-switcher a {
		padding: 7px 8px !important;
	}
}

/* ============================================================
   MOBİL HAMBURGER MENÜ FIX — 2026-05-08
   - Sorun: .sr-site-header üzerindeki backdrop-filter, fixed-position
     overlay için containing block oluşturuyor (CSS spec). Bu yüzden
     overlay header kutusuna sıkışıyor, tam ekran açılamıyor.
   - Çözüm: mobilde backdrop-filter kaldır, ek olarak overlay
     için defansif kurallar yaz.
   ============================================================ */

@media (max-width: 781px) {
	/* Header'da backdrop-filter mobilde KALDIR — overlay containing block'u kırar */
	.sr-site-header {
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
		background-color: rgba(255, 255, 255, 0.97) !important;
	}

	/* Hamburger butonu — touch target 44x44, görünür */
	.wp-block-navigation__responsive-container-open {
		width: 44px;
		height: 44px;
		display: flex !important;
		align-items: center;
		justify-content: center;
		color: var(--wp--preset--color--contrast) !important;
	}
	.wp-block-navigation__responsive-container-open svg {
		width: 28px;
		height: 28px;
	}

	/* Kapatma (X) butonu — büyük ve görünür */
	.wp-block-navigation__responsive-container-close {
		width: 48px !important;
		height: 48px !important;
		top: 12px !important;
		right: 12px !important;
		color: var(--wp--preset--color--contrast) !important;
	}
	.wp-block-navigation__responsive-container-close svg {
		width: 28px;
		height: 28px;
	}

	/* Overlay — viewport tam kaplasın, üstte olsun */
	.wp-block-navigation__responsive-container.is-menu-open {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		height: 100dvh !important;
		z-index: 999999 !important;
		background-color: #ffffff !important;
		overflow-y: auto !important;
	}

	/* Menü öğeleri — büyük dokunma alanı, dark on white */
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
		color: var(--wp--preset--color--contrast) !important;
		font-size: 1.15rem !important;
		font-weight: 600 !important;
		padding: 0.85rem 1rem !important;
		display: block !important;
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover,
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus-visible {
		color: var(--wp--preset--color--primary) !important;
	}

	/* Menü items arası boşluk */
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
		gap: 0.5rem !important;
		width: 100%;
		align-items: center;
	}
}

/* ============================================================
   MOBİL FIX v2 — 2026-05-08 (kullanıcı raporu sonrası)
   - Hizmetler section taşma: root padding mobilde fazla + grid min 280px
   - CF7 KVKK label: flex item min-width: auto yüzünden metin kırılmıyor
   ============================================================ */

@media (max-width: 781px) {
	/* WP root padding mobilde küçük — alignfull içeriklerin nefes alması için */
	:root {
		--wp--style--root--padding-left: var(--wp--preset--spacing--20) !important;
		--wp--style--root--padding-right: var(--wp--preset--spacing--20) !important;
	}

	/* Hizmetler grid: mobile 480-781 arası 2 kolon, ≤480 1 kolon */
	#hizmetler .wp-block-group.alignwide.is-layout-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	/* ====== CF7 KVKK ACCEPTANCE — kapsamlı taşma fix ======
	   Sorun: Outer <label> flex + child spans intrinsic content size = taşma
	   Çözüm: Tüm zinciri block + max-width 100% + word-break */

	/* Wrapper p'nin overflow kesimi */
	.sr-form-consent,
	.sr-form-consent > p {
		max-width: 100% !important;
		overflow-wrap: anywhere !important;
		word-break: break-word !important;
	}

	/* Outer label — flex değil, block (basit ve taşmasız) */
	.wpcf7-form .sr-form-consent > p > label {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	/* CF7'nin kontrol wrapper span'ı block + 100% genişlik */
	.wpcf7-form .wpcf7-form-control-wrap[data-name="kvkk-consent"],
	.wpcf7-form .wpcf7-acceptance,
	.wpcf7-form .wpcf7-acceptance > .wpcf7-list-item {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	/* Inner label (checkbox + text) — flex layout */
	.wpcf7-form .wpcf7-acceptance .wpcf7-list-item > label {
		display: flex !important;
		align-items: flex-start !important;
		gap: 0.5rem !important;
		flex-wrap: nowrap !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	/* Checkbox sabit genişlik */
	.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
		flex: 0 0 auto;
		width: 18px;
		height: 18px;
		margin: 4px 0 0 0;
	}

	/* Text span — esnek + kırılabilir */
	.wpcf7-form .wpcf7-list-item-label {
		flex: 1 1 0 !important;
		min-width: 0 !important;
		max-width: 100% !important;
		display: block !important;
		overflow-wrap: anywhere !important;
		word-break: break-word !important;
		white-space: normal !important;
		line-height: 1.5 !important;
	}

	/* Link içindeki uzun URL veya kelime kırılsın */
	.wpcf7-form .wpcf7-list-item-label a {
		word-break: break-word;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 480px) {
	/* Hizmetler grid: tek kolon */
	#hizmetler .wp-block-group.alignwide.is-layout-grid {
		grid-template-columns: 1fr !important;
	}

	/* CF7 form input/select font-size 16px (iOS zoom önleme) */
	.wpcf7-form input[type="text"],
	.wpcf7-form input[type="email"],
	.wpcf7-form input[type="tel"],
	.wpcf7-form input[type="url"],
	.wpcf7-form select,
	.wpcf7-form textarea {
		font-size: 16px !important;
	}
}
