/* ═══════════════════════════════════════════════════════
   OTOGALERIO CORE — HERO SLIDER WIDGET
   ═══════════════════════════════════════════════════════ */

/* Tema button reset — slider içindeki butonlara karışmasın */
.ogc-hs button {
	font: inherit;
	margin: 0;
	background: none;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
}
.ogc-hs *,
.ogc-hs *::before,
.ogc-hs *::after { box-sizing: border-box; }

.ogc-hs {
	--hs-height-d: 760px;
	--hs-height-t: 680px;
	--hs-height-m: auto;
	--hs-overlay: rgba(15, 22, 41, .55);
	--hs-overlay-2: rgba(15, 22, 41, .82);
	--hs-text: #ffffff;
	--hs-eyebrow-bg: rgba(225,12,20, .92);
	--hs-eyebrow-color: #ffffff;
	--hs-accent: #e10c14;
	--hs-accent-2: #ff5252;
	--hs-primary: #1a3f92;

	position: relative;
	width: 100%;
	overflow: hidden;
	font-family: inherit;
	color: var(--hs-text);
}

/* ─── Slider container ─── */
.ogc-hs__slider {
	position: relative;
	width: 100%;
	height: var(--hs-height-d);
	min-height: 480px;
}
.ogc-hs__track {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.ogc-hs__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity .9s var(--ogc-easing), visibility .9s var(--ogc-easing);
	z-index: 1;
}
.ogc-hs__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}
.ogc-hs__slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		var(--hs-overlay-2) 0%,
		var(--hs-overlay) 55%,
		rgba(15, 22, 41, .35) 100%
	);
	z-index: 1;
}

/* Subtle Ken Burns effect on active slide */
.ogc-hs__slide.is-active {
	animation: ogc-hs-zoom 14s linear forwards;
}
@keyframes ogc-hs-zoom {
	from { transform: scale(1); }
	to   { transform: scale(1.07); }
}

/* ─── Slide layout (text left + wizard right) ─── */
.ogc-hs__container {
	position: absolute;
	inset: 0;
	z-index: 5;
	max-width: 1380px;
	margin: 0 auto;
	padding: 50px 32px;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	align-items: center;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.ogc-hs[data-layout="wizard-left"] .ogc-hs__container {
	grid-template-columns: 380px 1fr;
}
.ogc-hs[data-layout="wizard-left"] .ogc-hs__content { order: 2; }
.ogc-hs[data-layout="wizard-left"] .ogc-hs__wizard  { order: 1; }
.ogc-hs[data-layout="full"] .ogc-hs__container { grid-template-columns: 1fr; max-width: 900px; text-align: center; }
.ogc-hs[data-layout="full"] .ogc-hs__wizard { display: none; }

/* ─── CENTERED layout — yatay split, geniş wizard ─── */
.ogc-hs[data-layout="centered"] .ogc-hs__container {
	display: grid !important;
	grid-template-columns: 1fr 780px;
	max-width: 1540px;
	padding: 40px 32px;
	gap: 48px;
	align-items: center;
	text-align: left;
}
.ogc-hs[data-layout="centered"] .ogc-hs__content {
	max-width: 520px;
	margin: 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}
.ogc-hs[data-layout="centered"] .ogc-hs__title {
	font-size: clamp(28px, 3.5vw, 44px) !important;
	margin: 0 !important;
	line-height: 1.1 !important;
}
.ogc-hs[data-layout="centered"] .ogc-hs__subtitle {
	font-size: clamp(13px, 1.05vw, 15px) !important;
	margin: 0 !important;
	max-width: 480px;
	line-height: 1.55 !important;
}

.ogc-hs[data-layout="centered"] .ogc-hs__wizard {
	width: 100%;
	max-width: 720px;
	margin: 0;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-card {
	padding: 22px 26px 18px;
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	max-height: 680px;
	min-height: 460px;
	box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-card::before { height: 3px; }
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-badge {
	display: inline-block;
	margin: 0 0 8px;
	font-size: 10px;
	padding: 3px 10px;
}

/* WIZARD BODY — şeffaf, tek katman (kutu içinde kutu yok) */
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body {
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin-bottom: 0;
	flex: 1 1 auto;
	overflow: hidden;
	display: flex;
	max-height: none;
	min-height: 0;
}
/* Wizard plugin'in kendi card'ı flex container — body scrollable, actions sabit */
/* TÜM iç katmanlar tam genişlik + sıfır kapsayıcı (kutu içinde kutu yok) */
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body > .ardg-root,
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-root {
	width: 100% !important;
	max-width: 100% !important;
	display: flex !important;
	flex-direction: column;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	flex: 1 1 auto;
	min-height: 0;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-card,
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-card-compact {
	display: flex !important;
	flex-direction: column;
	width: 100% !important;
	max-width: 100% !important;
	height: 100%;
	min-height: 0;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-step-area {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	min-height: 0;
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 4px 0 0 !important;
	margin: 0 !important;
	background: transparent !important;
	border: 0 !important;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
	box-sizing: border-box;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-step-area::-webkit-scrollbar { width: 5px; }
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-step-area::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-actions {
	flex-shrink: 0;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #e2e8f0;
	display: flex;
	gap: 8px;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-actions button,
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-btn {
	flex: 1 1 auto;
	padding: 10px 16px !important;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: all .2s;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-btn-ghost {
	background: #fff !important;
	border-color: #e2e8f0 !important;
	color: #64748b !important;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-btn-ghost:hover:not(:disabled) {
	border-color: var(--hs-accent) !important;
	color: var(--hs-accent) !important;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-btn-primary {
	background: var(--hs-accent) !important;
	color: #fff !important;
	border-color: var(--hs-accent) !important;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-btn-primary:hover {
	background: #a00910 !important;
	border-color: #a00910 !important;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-progress {
	flex-shrink: 0;
	margin: 0 0 10px;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-summary {
	flex-shrink: 0;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-trust {
	font-size: 11px;
	gap: 12px;
	padding-top: 8px;
	border-top: 1px solid #e2e8f0;
	flex-shrink: 0;
	justify-content: flex-start;
}

/* ─── Wizard içi kompakt: parça checkbox'ları ULTRA mini pills ─── */
.ogc-hs__wizard-body .ardg-condition-section {
	margin-bottom: 10px;
}
.ogc-hs__wizard-body .ardg-condition-section .ardg-label {
	font-size: 12.5px !important;
	font-weight: 700;
	margin-bottom: 5px;
}
.ogc-hs__wizard-body .ardg-none-toggle {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 9px;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	cursor: pointer;
	margin-bottom: 6px;
	transition: background .2s, border-color .2s;
}
.ogc-hs__wizard-body .ardg-none-toggle.active {
	background: #d1fae5;
	border-color: #10b981;
	color: #065f46 !important;
}
.ogc-hs__wizard-body .ardg-none-toggle input { margin: 0; accent-color: #10b981; width: 12px; height: 12px; }

.ogc-hs__wizard-body .ardg-checks {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	margin: 0;
}
.ogc-hs__wizard-body .ardg-checks.disabled { opacity: .35; pointer-events: none; }
.ogc-hs__wizard-body .ardg-check {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 6px;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 5px;
	font-size: 10.5px;
	font-weight: 500;
	cursor: pointer;
	transition: background .2s, border-color .2s, color .2s;
	line-height: 1.15;
}
.ogc-hs__wizard-body .ardg-check input { width: 12px; height: 12px; }
.ogc-hs__wizard-body .ardg-check:hover { border-color: var(--hs-accent); }
.ogc-hs__wizard-body .ardg-check.checked {
	background: var(--hs-accent);
	border-color: var(--hs-accent);
	color: #fff !important;
}
.ogc-hs__wizard-body .ardg-check.checked * { color: #fff !important; }
.ogc-hs__wizard-body .ardg-check input { margin: 0; accent-color: var(--hs-accent); flex-shrink: 0; }
.ogc-hs__wizard-body .ardg-help {
	font-size: 11px !important;
	color: #64748b !important;
	margin: 0 0 8px !important;
	line-height: 1.4;
}
.ogc-hs__wizard-body .ardg-label {
	font-size: 14px !important;
	font-weight: 700;
	margin-bottom: 8px;
}
.ogc-hs__wizard-body .ardg-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}
.ogc-hs__wizard-body .ardg-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
/* Tüm wizard içeriği tam genişlik */
.ogc-hs__wizard-body .ardg-step-area > *,
.ogc-hs__wizard-body .ardg-field {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
/* Wizard plugin'in kendi header'ı (her sayfada gizle, biz custom header gösteriyoruz) */
.ogc-hs__wizard-body .ardg-header { display: none !important; }
/* Progress bar tam genişlik */
.ogc-hs__wizard-body .ardg-progress {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 0 12px !important;
}
.ogc-hs__wizard-body .ardg-progress-bar {
	width: 100% !important;
	height: 6px !important;
	background: #f1f5f9 !important;
	border-radius: 99px !important;
	overflow: hidden;
}
.ogc-hs__wizard-body .ardg-progress-fill {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--hs-accent), #ff5252) !important;
	border-radius: 99px !important;
	transition: width .35s ease;
}
.ogc-hs__wizard-body .ardg-option {
	padding: 10px 8px;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	transition: border-color .2s, background .2s;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.ogc-hs__wizard-body .ardg-option:hover { border-color: var(--hs-accent); }
.ogc-hs__wizard-body .ardg-option.selected {
	border-color: var(--hs-accent);
	background: rgba(225,12,20, 0.08);
}
.ogc-hs__wizard-body .ardg-option .icon { font-size: 22px; }
.ogc-hs__wizard-body .ardg-option img { max-height: 36px; }

.ogc-hs__wizard-body .ardg-select,
.ogc-hs__wizard-body .ardg-select-big {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 500;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s;
}
.ogc-hs__wizard-body .ardg-select:focus,
.ogc-hs__wizard-body .ardg-select-big:focus {
	border-color: var(--hs-accent);
	outline: none;
}
.ogc-hs__wizard-body .ardg-input,
.ogc-hs__wizard-body input[type="text"],
.ogc-hs__wizard-body input[type="email"],
.ogc-hs__wizard-body input[type="tel"],
.ogc-hs__wizard-body input[type="number"] {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 9px;
	font-size: 14px;
	background: #fff;
	box-sizing: border-box;
	transition: border-color .2s, box-shadow .2s;
}
.ogc-hs__wizard-body .ardg-input:focus,
.ogc-hs__wizard-body input:focus {
	border-color: var(--hs-accent);
	outline: none;
}
.ogc-hs__wizard-body .ardg-field {
	margin-bottom: 12px;
}
.ogc-hs__wizard-body .ardg-field:last-child { margin-bottom: 0; }
.ogc-hs__wizard-body .ardg-field label,
.ogc-hs__wizard-body label {
	display: block;
	font-size: 12px !important;
	font-weight: 600;
	margin-bottom: 5px;
	color: #475569 !important;
}
.ogc-hs__wizard-body .ardg-row,
.ogc-hs__wizard-body .ardg-grid-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
/* KVKK kutusu — sticky benzeri görünür, kompakt */
.ogc-hs__wizard-body .ardg-kvkk-box {
	background: #fffbeb;
	border: 1.5px solid #fcd34d;
	border-radius: 8px;
	padding: 10px 12px;
	margin-top: 14px;
	font-size: 12px;
	line-height: 1.5;
}
.ogc-hs__wizard-body .ardg-kvkk-check {
	display: flex !important;
	align-items: flex-start;
	gap: 8px;
	cursor: pointer;
	margin: 0 !important;
	font-weight: 500;
	color: #1a3f92 !important;
}
.ogc-hs__wizard-body .ardg-kvkk-check input,
.ogc-hs__wizard-body .ardg-kvkk-cb {
	width: 16px;
	height: 16px;
	margin: 1px 0 0 !important;
	flex-shrink: 0;
	accent-color: var(--hs-accent);
	cursor: pointer;
}
.ogc-hs__wizard-body .ardg-kvkk-text {
	flex: 1 1 auto;
	font-size: 12px !important;
	color: #1a3f92 !important;
}
.ogc-hs__wizard-body .ardg-kvkk-toggle {
	margin-top: 6px;
}
.ogc-hs__wizard-body .ardg-kvkk-link {
	display: inline-block;
	font-size: 11.5px !important;
	color: var(--hs-accent) !important;
	text-decoration: none !important;
	font-weight: 600;
	padding: 2px 0;
}
.ogc-hs__wizard-body .ardg-kvkk-link:hover { text-decoration: underline !important; }
.ogc-hs__wizard-body .ardg-kvkk-content {
	background: #fff;
	border-radius: 6px;
	padding: 10px;
	margin-top: 8px;
	max-height: 130px;
	overflow-y: auto;
	font-size: 11px !important;
	line-height: 1.55;
	color: #475569 !important;
	border: 1px solid #fde68a;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
}
.ogc-hs__wizard-body .ardg-kvkk-content::-webkit-scrollbar { width: 5px; }
.ogc-hs__wizard-body .ardg-kvkk-content::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.ogc-hs__wizard-body .ardg-kvkk-content * {
	font-size: 11px !important;
	color: #475569 !important;
	line-height: 1.55 !important;
}
.ogc-hs__wizard-body .ardg-kvkk-content p { margin: 0 0 6px !important; }
.ogc-hs__wizard-body .ardg-kvkk-content strong { color: #1a3f92 !important; font-weight: 700; }

/* Iframe görünümünü azalt — daha entegre kart */
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-card {
	background: #fff;
	border: 1px solid rgba(255,255,255,.4);
}
/* Üst gradient çizgi sade */
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-card::before {
	background: linear-gradient(90deg, var(--hs-accent), #ff5252, var(--hs-accent));
	height: 3px;
}

.ogc-hs__wizard-body .ardg-summary,
.ogc-hs__wizard-body [data-summary] {
	background: #f8fafc;
	border-radius: 8px;
	padding: 8px 10px;
	margin-bottom: 12px;
	flex-shrink: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.ogc-hs__wizard-body .ardg-summary-chip,
.ogc-hs__wizard-body [data-summary] > * {
	font-size: 11px !important;
	padding: 3px 9px !important;
	border-radius: 5px !important;
	background: #fff !important;
	border: 1px solid #e2e8f0 !important;
	white-space: nowrap;
	font-weight: 500;
}
.ogc-hs__wizard-body [data-summary] > strong { font-weight: 700 !important; color: var(--hs-accent) !important; }
/* Step area boşluğu */
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body .ardg-step-area {
	padding-top: 4px;
	padding-bottom: 4px;
}
/* Form ferah görünüm */
.ogc-hs__wizard-body .ardg-step-area > h3:first-child,
.ogc-hs__wizard-body .ardg-step-area > .ardg-label:first-child {
	margin-top: 0 !important;
	margin-bottom: 6px !important;
	font-size: 16px !important;
	font-weight: 700;
}
.ogc-hs__wizard-body .ardg-help,
.ogc-hs__wizard-body .ardg-step-area > p:first-of-type {
	margin: 0 0 14px !important;
	font-size: 12.5px !important;
	color: #64748b !important;
	line-height: 1.5 !important;
}

/* Quick actions — sol içerik kolonunda başlığın altında */
.ogc-hs__quick-actions {
	display: flex;
	gap: 10px;
	margin-top: 6px;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.ogc-hs[data-layout="centered"] .ogc-hs__content .ogc-hs__quick-actions {
	justify-content: flex-start;
}
.ogc-hs__qa-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 16px;
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none;
	transition: transform .25s var(--ogc-easing), background .25s, box-shadow .25s;
	white-space: nowrap;
	border: 1px solid rgba(255, 255, 255, .35);
	background: rgba(255, 255, 255, .12);
	color: #fff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.ogc-hs__qa-btn:hover {
	transform: translateY(-2px);
	color: #fff;
}
.ogc-hs__qa-btn--phone:hover {
	background: var(--hs-accent);
	border-color: var(--hs-accent);
	color: #fff;
}
.ogc-hs__qa-btn--wa:hover {
	background: #25D366;
	border-color: #25D366;
	color: #fff;
}
.ogc-hs__qa-btn svg { width: 13px; height: 13px; }

/* ─── Slide content ─── */
.ogc-hs__content {
	position: relative;
	max-width: 620px;
	opacity: 1;
	transform: translateY(0);
	transition: opacity .7s var(--ogc-easing), transform .7s var(--ogc-easing);
}
.ogc-hs__content.is-leaving {
	opacity: 0;
	transform: translateY(20px);
}
.ogc-hs__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--hs-eyebrow-bg);
	color: var(--hs-eyebrow-color);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	padding: 7px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.ogc-hs__eyebrow::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	animation: ogc-hs-dot 1.6s infinite;
}
@keyframes ogc-hs-dot {
	0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); }
	70%  { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.ogc-hs__title {
	font-size: clamp(26px, 3.6vw, 46px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
	color: var(--hs-text);
	text-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}
.ogc-hs__title em {
	font-style: normal;
	background: linear-gradient(135deg, var(--hs-accent-2) 0%, var(--hs-accent) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.ogc-hs__subtitle {
	font-size: clamp(13.5px, 1.1vw, 15.5px);
	line-height: 1.6;
	margin: 0 0 20px;
	color: rgba(255, 255, 255, .92);
	max-width: 540px;
	font-weight: 400;
}

.ogc-hs__bullets {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
}
.ogc-hs__bullets li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}
.ogc-hs__bullets li::before {
	content: '✓';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	background: var(--hs-accent);
	border-radius: 50%;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	flex-shrink: 0;
}

.ogc-hs__buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.ogc-hs-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 26px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: transform .25s var(--ogc-easing), box-shadow .25s var(--ogc-easing), background .25s, color .25s;
	white-space: nowrap;
	border: 2px solid transparent;
	letter-spacing: -0.005em;
	cursor: pointer;
}
/* Kırmızı buton — default kırmızı, hover lacivert. Yazı + ikon HER ZAMAN beyaz. Sade, ek efekt yok. */
.ogc-hs-btn--primary {
	background: var(--hs-accent);
	color: #fff;
}
.ogc-hs-btn--primary:hover,
.ogc-hs-btn--primary:focus,
.ogc-hs-btn--primary:active {
	background: var(--hs-primary);
	color: #fff;
}
/* Hover'da SVG/Font Awesome ikonu da beyaz kalsın (override güvencesi) */
.ogc-hs-btn--primary:hover svg [fill]:not([fill="none"]),
.ogc-hs-btn--primary:focus svg [fill]:not([fill="none"]) {
	fill: #fff !important;
}
.ogc-hs-btn--primary:hover svg [stroke]:not([stroke="none"]),
.ogc-hs-btn--primary:focus svg [stroke]:not([stroke="none"]) {
	stroke: #fff !important;
}

/* Ghost (transparan) — beyaz font+ikon; hover'da beyaz dolu, font+ikon lacivert */
.ogc-hs-btn--ghost {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border-color: rgba(255, 255, 255, .35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.ogc-hs-btn--ghost:hover {
	background: #fff;
	color: var(--hs-primary);
	border-color: #fff;
	transform: translateY(-2px);
}

/* Tüm hero butonlarındaki SVG/Font Awesome ikonları parent rengini takip etsin */
.ogc-hs-btn svg,
.ogc-hs-btn svg path,
.ogc-hs-btn svg circle,
.ogc-hs-btn svg rect,
.ogc-hs-btn svg polygon,
.ogc-hs-btn svg use { fill: currentColor; }
.ogc-hs-btn svg [stroke]:not([stroke="none"]) { stroke: currentColor; }
.ogc-hs-btn i,
.ogc-hs-btn i::before { color: inherit; }
/* Inline fill="..." attribute'unu override etmek için */
.ogc-hs-btn--primary svg [fill]:not([fill="none"]) { fill: #fff !important; }
.ogc-hs-btn--ghost svg [fill]:not([fill="none"]) { fill: #fff !important; }
.ogc-hs-btn--ghost:hover svg [fill]:not([fill="none"]) { fill: var(--hs-primary) !important; }
.ogc-hs-btn i, .ogc-hs-btn svg { font-size: 16px; width: 16px; height: 16px; }

/* ─── Wizard Panel (sağda) ─── */
.ogc-hs__wizard {
	position: relative;
	z-index: 5;
}
.ogc-hs__wizard-card {
	background: #fff;
	color: var(--hs-primary);
	border-radius: 20px;
	padding: 28px 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .1);
	position: relative;
	overflow: hidden;
}
.ogc-hs__wizard-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--hs-accent) 0%, var(--hs-accent-2) 100%);
}
.ogc-hs__wizard-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, var(--hs-accent) 0%, var(--hs-accent-2) 100%);
	color: #fff;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.ogc-hs__wizard-title {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 6px;
	line-height: 1.2;
	color: var(--hs-primary);
	letter-spacing: -0.015em;
}
.ogc-hs__wizard-sub {
	font-size: 13.5px;
	color: #64748b;
	margin: 0 0 20px;
	line-height: 1.5;
}
.ogc-hs__wizard-body {
	background: #f8fafc;
	border-radius: 14px;
	padding: 16px 14px;
	margin-bottom: 14px;
	color: #1a3f92;
	max-height: 380px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
}
.ogc-hs__wizard-body::-webkit-scrollbar { width: 6px; }
.ogc-hs__wizard-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
/* Wizard içindeki tema override (araç değerleme eklentisi) */
.ogc-hs__wizard-body .ardg-card,
.ogc-hs__wizard-body .ardg-card-compact {
	background: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
}
.ogc-hs__wizard-body .ardg-header { display: none !important; }
.ogc-hs__wizard-body .ardg-progress { margin-top: 0; }
/* Tüm wizard içeriği koyu renk garantisi (parent'tan beyaz inherit önle) */
.ogc-hs__wizard-body,
.ogc-hs__wizard-body *:not(.ogc-hs-btn):not(button) {
	color: #1a3f92;
}
.ogc-hs__wizard-body .ardg-label,
.ogc-hs__wizard-body h1,
.ogc-hs__wizard-body h2,
.ogc-hs__wizard-body h3,
.ogc-hs__wizard-body h4,
.ogc-hs__wizard-body p,
.ogc-hs__wizard-body label,
.ogc-hs__wizard-body span,
.ogc-hs__wizard-body div,
.ogc-hs__wizard-body small {
	color: #1a3f92 !important;
}
.ogc-hs__wizard-body .ardg-option,
.ogc-hs__wizard-body .ardg-option * {
	color: #1a3f92 !important;
}
.ogc-hs__wizard-body .ardg-select,
.ogc-hs__wizard-body input,
.ogc-hs__wizard-body select,
.ogc-hs__wizard-body textarea {
	color: #1a3f92 !important;
	background: #fff !important;
}
.ogc-hs__wizard-body .ardg-error { color: #dc2626 !important; }
.ogc-hs__wizard-body .ardg-loading { color: #64748b !important; }

.ogc-hs__wizard-trust {
	display: flex;
	gap: 16px;
	font-size: 12px;
	color: #64748b;
	border-top: 1px solid #e2e8f0;
	padding-top: 14px;
	flex-wrap: wrap;
	justify-content: center;
}
.ogc-hs__wizard-trust span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
}
.ogc-hs__wizard-trust span::before {
	content: '✓';
	color: var(--hs-accent);
	font-weight: 800;
}

/* ─── Slider Controls ─── */
/* Dots — altta ortada */
.ogc-hs__dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 8;
	display: flex;
	gap: 8px;
}
/* Arrows — sağ ve sol kenarda dikey ortada */
.ogc-hs__arrows {
	position: absolute;
	inset: 0;
	z-index: 7;
	pointer-events: none;
}
.ogc-hs__arrow {
	pointer-events: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.ogc-hs__arrow--prev { left: 20px; }
.ogc-hs__arrow--next { right: 20px; }
.ogc-hs__dot {
	width: 10px !important;
	height: 10px !important;
	min-width: 10px;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, .35);
	border: none !important;
	padding: 0 !important;
	cursor: pointer;
	transition: background .25s, width .35s var(--ogc-easing);
}
.ogc-hs__dot.is-active {
	width: 32px !important;
	border-radius: 5px !important;
}
.ogc-hs__dot.is-active {
	background: var(--hs-accent) !important;
}

.ogc-hs__arrow {
	width: 48px !important;
	height: 48px !important;
	min-width: 48px;
	min-height: 48px;
	padding: 0 !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .15);
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50% !important;
	cursor: pointer;
	color: #fff;
	transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	flex-shrink: 0;
}
.ogc-hs__arrow:hover {
	background: var(--hs-accent);
	border-color: var(--hs-accent);
	color: #fff;
	transform: translateY(-50%) scale(1.08);
}
.ogc-hs__arrow svg { color: #fff; }
.ogc-hs__arrow svg { width: 18px; height: 18px; }

/* Auto-play progress bar */
.ogc-hs__progress {
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: rgba(255, 255, 255, .15);
	z-index: 7;
}
.ogc-hs__progress-fill {
	display: block;
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--hs-accent), var(--hs-accent-2));
	transition: width linear;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1280px) {
	.ogc-hs[data-layout="centered"] .ogc-hs__container { grid-template-columns: 1fr 600px; gap: 32px; }
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard { max-width: 600px; }
}
@media (max-width: 1100px) {
	.ogc-hs__slider { height: var(--hs-height-t); min-height: 600px; }
	.ogc-hs__container { grid-template-columns: 1fr 380px; gap: 36px; padding: 50px 24px; }
	.ogc-hs[data-layout="wizard-left"] .ogc-hs__container { grid-template-columns: 380px 1fr; }
	.ogc-hs[data-layout="centered"] .ogc-hs__container { grid-template-columns: 1fr 520px; gap: 32px; }
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard { max-width: 520px; }
	.ogc-hs__title { font-size: clamp(28px, 4vw, 44px); }
}

@media (max-width: 880px) {
	/* Mobile: sadece wizard görünür, slider üstüne overlay */
	.ogc-hs { overflow: hidden !important; }
	.ogc-hs__slider {
		height: auto !important;
		min-height: 760px !important;
		overflow: hidden !important;
	}
	.ogc-hs__track {
		position: absolute !important;
		inset: 0 !important;
		height: 100% !important;
		overflow: hidden !important;
	}
	.ogc-hs__slide { position: absolute !important; inset: 0 !important; }
	/* Container: slider üzerine absolute, içerik tam ortala */
	.ogc-hs__container,
	.ogc-hs[data-layout="centered"] .ogc-hs__container {
		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
		align-items: center !important;
		grid-template-columns: 1fr !important;
		gap: 0 !important;
		padding: 30px 14px !important;
		position: absolute !important;
		inset: 0 !important;
		left: 0 !important;
		transform: none !important;
		width: 100% !important;
		max-width: 100% !important;
		text-align: center !important;
		z-index: 5 !important;
	}
	/* Slide yazıları (eyebrow/başlık/altmetin/buton/quick-actions) gizli */
	.ogc-hs__content,
	.ogc-hs[data-layout="centered"] .ogc-hs__content {
		display: none !important;
	}
	/* Wizard ortada ve görünür */
	.ogc-hs__wizard,
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard {
		display: block !important;
		width: 100% !important;
		max-width: 460px !important;
		margin: 0 auto !important;
	}
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard-card,
	.ogc-hs__wizard-card {
		max-height: 90vh !important;
		min-height: 0 !important;
		padding: 18px 16px !important;
	}
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body,
	.ogc-hs__wizard-body {
		max-height: 65vh !important;
	}
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard-trust {
		justify-content: center;
	}
	/* Quick actions slide içinde gizli (yukarıda content'ten gizlendi zaten) */
	.ogc-hs__quick-actions { justify-content: center !important; }
	.ogc-hs__slide { position: absolute; }
	.ogc-hs[data-layout="wizard-left"] .ogc-hs__container { grid-template-columns: 1fr; }
	.ogc-hs[data-layout="wizard-left"] .ogc-hs__content { order: 1; }
	.ogc-hs[data-layout="wizard-left"] .ogc-hs__wizard  { order: 2; }
	.ogc-hs__wizard { max-width: 100%; }
	.ogc-hs__wizard-card { padding: 22px 18px; }
	.ogc-hs__bullets { gap: 8px 14px; }
	.ogc-hs__bullets li { font-size: 13px; }
	.ogc-hs__buttons { flex-direction: column; align-items: stretch; }
	.ogc-hs-btn { justify-content: center; padding: 14px 24px; }
	.ogc-hs__dots { bottom: 14px; }
	.ogc-hs__arrow--prev { left: 10px; }
	.ogc-hs__arrow--next { right: 10px; }
	.ogc-hs__arrow { width: 40px !important; height: 40px !important; min-width: 40px; min-height: 40px; }
}

@media (max-width: 600px) {
	.ogc-hs__slider { min-height: 720px !important; }
	.ogc-hs__arrow { display: none !important; }
	/* Wizard kompakt mobile */
	.ogc-hs__wizard-card,
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard-card {
		padding: 14px 12px !important;
		border-radius: 14px !important;
		max-height: 88vh !important;
	}
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body,
	.ogc-hs__wizard-body {
		max-height: 62vh !important;
		padding: 10px !important;
	}
	.ogc-hs__wizard-body .ardg-checks { grid-template-columns: repeat(2, 1fr) !important; }
	.ogc-hs__wizard-body .ardg-grid { grid-template-columns: 1fr !important; }
	.ogc-hs__wizard-body .ardg-grid.cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
	/* Wizard badge ortada */
	.ogc-hs__wizard-badge {
		display: block !important;
		text-align: center;
		margin: 0 auto 10px !important;
		width: fit-content !important;
	}
}

@media (max-width: 420px) {
	.ogc-hs__slider { min-height: 700px !important; }
	.ogc-hs__wizard,
	.ogc-hs[data-layout="centered"] .ogc-hs__wizard { max-width: 100% !important; }
	.ogc-hs__wizard-body { padding: 8px !important; }
}

/* ═══════════ [ardg_hero] (yeni hero shortcode) override ═══════════ */
/* Yeni kompakt hero kullanıldığında kart yüksekliğini içeriğe göre küçült */
.ogc-hs__wizard-card:has(.ardgh),
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-card:has(.ardgh) {
	min-height: auto;
	max-height: none;
	padding: 24px 28px 22px;
}
.ogc-hs__wizard-body:has(.ardgh) {
	overflow: visible;
	display: block;
	max-height: none;
}
.ogc-hs[data-layout="centered"] .ogc-hs__wizard-body:has(.ardgh) {
	background: transparent;
	padding: 0;
}
/* Form container içinde kalsın, taşmasın */
.ogc-hs__wizard-body .ardgh { max-width: 100%; }

@media (max-width: 600px) {
	.ogc-hs__wizard-card:has(.ardgh) {
		padding: 18px 16px !important;
	}
}

/* ═══════════ EDITOR ═══════════ */
.elementor-editor-active .ogc-hs__slider { animation: none; }
.elementor-editor-active .ogc-hs__slide.is-active { animation: none; }
