/* ═══════════════════════════════════════════════════════
   OTOGALERIO CORE — ABOUT WIDGET
   ═══════════════════════════════════════════════════════ */

.ogc-about {
	--a-primary:   #1a3f92;
	--a-accent:    #e10c14;
	--a-accent-2:  #ff5252;
	--a-text:      #1e293b;
	--a-muted:     #64748b;
	--a-bg-soft:   #f8fafc;
	--a-border:    #e2e8f0;
	--a-radius:    16px;

	position: relative;
	padding: 80px 24px;
	font-family: inherit;
	color: var(--a-text);
	overflow: hidden;
}


.ogc-about__container {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.ogc-about[data-image-pos="right"] .ogc-about__visual { order: 2; }
.ogc-about[data-image-pos="right"] .ogc-about__content { order: 1; }

/* ─── VISUAL (left) ─── */
.ogc-about__visual {
	position: relative;
	min-height: 460px;
}
.ogc-about__visual-shape { display: none; }
.ogc-about__image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 440px;
	border-radius: 20px;
	overflow: hidden;
	background: var(--a-bg-soft);
	z-index: 1;
}
.ogc-about__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Görsel üzeri overlay (alt karartı) */
.ogc-about__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(15,23,41,.20) 100%);
	pointer-events: none;
}

/* Floating stat cards */
.ogc-about__stats {
	position: absolute;
	z-index: 3;
	pointer-events: none;
}
.ogc-about__stat {
	position: absolute;
	background: #fff;
	border-radius: 14px;
	padding: 16px 22px;
	box-shadow: 0 14px 40px rgba(15, 23, 41, .18), 0 0 0 1px rgba(0,0,0,.04);
	pointer-events: auto;
	min-width: 130px;
	transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.ogc-about__stat:hover { transform: translateY(-4px); }
.ogc-about__stat--1 {
	top: 10%;
	left: -10px;
}
.ogc-about__stat--2 {
	bottom: 18%;
	right: -10px;
}
.ogc-about__stat--3 {
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
}
.ogc-about__stat--3:hover { transform: translateY(calc(-50% - 4px)); }

.ogc-about__stat-icon {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--a-accent) 0%, var(--a-accent-2) 100%);
	border-radius: 10px;
	color: #fff;
	margin-bottom: 8px;
	font-size: 18px;
}
.ogc-about__stat-icon i,
.ogc-about__stat-icon svg { font-size: 18px; width: 18px; height: 18px; color: #fff; }
.ogc-about__stat-num {
	font-size: 28px;
	font-weight: 800;
	color: var(--a-primary);
	line-height: 1;
	letter-spacing: -0.02em;
	display: flex;
	align-items: baseline;
	gap: 2px;
}
.ogc-about__stat-num small {
	font-size: 18px;
	color: var(--a-accent);
	font-weight: 700;
}
.ogc-about__stat-label {
	font-size: 12px;
	color: var(--a-muted);
	font-weight: 600;
	margin-top: 2px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Play / experience badge (alternatif şekil) */
.ogc-about__exp-badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: linear-gradient(135deg, var(--a-accent) 0%, var(--a-accent-2) 100%);
	color: #fff;
	padding: 22px 28px;
	border-radius: 16px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 14px;
}
.ogc-about__exp-badge .num {
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
}
.ogc-about__exp-badge .lbl {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

/* ─── CONTENT (right) ─── */
.ogc-about__content {
	position: relative;
}
.ogc-about__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 13px;
	font-weight: 700;
	color: var(--a-accent);
	text-transform: uppercase;
	letter-spacing: 0.13em;
}
.ogc-about__eyebrow::before,
.ogc-about__eyebrow::after {
	content: '';
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--a-accent);
	border-radius: 1px;
}

.ogc-about__title {
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: var(--a-primary);
	margin: 0 0 22px;
}
.ogc-about__title em {
	font-style: normal;
	background: linear-gradient(135deg, var(--a-accent) 0%, var(--a-accent-2) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ogc-about__desc {
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--a-muted);
	margin: 0 0 26px;
	max-width: 560px;
}
.ogc-about__desc strong { color: var(--a-primary); font-weight: 700; }

/* Feature list */
.ogc-about__features {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.ogc-about__feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: var(--a-bg-soft);
	border-radius: 12px;
	border: 1px solid transparent;
	transition: border-color .25s, transform .25s;
}
.ogc-about__feature:hover {
	border-color: var(--a-accent);
	transform: translateY(-2px);
}
.ogc-about__feature-icon {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--a-primary);
	color: #ffffff;
	border-radius: 10px;
	flex-shrink: 0;
	font-size: 16px;
	transition: background .25s, transform .25s;
}
.ogc-about__feature-icon i,
.ogc-about__feature-icon svg {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: #ffffff !important;
	fill: #ffffff !important;
}
.ogc-about__feature-icon svg path,
.ogc-about__feature-icon svg circle,
.ogc-about__feature-icon svg rect,
.ogc-about__feature-icon svg polygon { fill: #ffffff !important; stroke: none; }
.ogc-about__feature:hover .ogc-about__feature-icon {
	background: var(--a-accent);
	transform: scale(1.05);
}
.ogc-about__feature-text {
	font-size: 14px;
	font-weight: 600;
	color: var(--a-primary);
	line-height: 1.4;
}

/* Tabs */
.ogc-about__tabs {
	margin: 0 0 28px;
}
.ogc-about__tabs-nav {
	display: flex;
	gap: 4px;
	padding: 5px;
	background: var(--a-bg-soft);
	border-radius: 12px;
	margin-bottom: 18px;
	width: fit-content;
}
.ogc-about__tab-btn {
	background: transparent;
	border: none;
	padding: 10px 22px;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 600;
	color: var(--a-muted);
	cursor: pointer;
	transition: background .25s, color .25s;
	position: relative;
}
.ogc-about__tab-btn:hover { color: var(--a-primary); }
.ogc-about__tab-btn.is-active {
	background: var(--a-accent);
	color: #fff;
	box-shadow: 0 6px 16px rgba(225,12,20,.32);
}
.ogc-about__tab-content {
	display: none;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--a-muted);
	max-width: 580px;
	animation: ogc-about-fade .35s ease;
}
.ogc-about__tab-content.is-active { display: block; }
.ogc-about__tab-content strong { color: var(--a-primary); }
@keyframes ogc-about-fade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* CTAs */
.ogc-about__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}
.ogc-about-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: -0.005em;
	transition: transform .25s cubic-bezier(.22,.61,.36,1), background .25s, box-shadow .25s, color .25s;
	border: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
}
.ogc-about-btn--primary {
	background: var(--a-primary);
	color: #fff;
	box-shadow: 0 8px 22px rgba(26,63,146, .25);
}
.ogc-about-btn--primary i,
.ogc-about-btn--primary svg {
	color: #ffffff !important;
	fill: #ffffff !important;
}
.ogc-about-btn--primary svg path,
.ogc-about-btn--primary svg circle,
.ogc-about-btn--primary svg rect,
.ogc-about-btn--primary svg polygon {
	fill: #ffffff !important;
	stroke: none;
}
.ogc-about-btn--primary:hover {
	background: var(--a-accent);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(225,12,20, .42);
}
.ogc-about-btn--primary:hover i,
.ogc-about-btn--primary:hover svg {
	color: #ffffff !important;
	fill: #ffffff !important;
}
.ogc-about-btn--secondary {
	background: transparent;
	color: var(--a-accent);
	border-color: var(--a-accent);
}
.ogc-about-btn--secondary i,
.ogc-about-btn--secondary svg {
	color: var(--a-accent) !important;
	fill: var(--a-accent) !important;
	transition: color .25s, fill .25s;
}
.ogc-about-btn--secondary svg path,
.ogc-about-btn--secondary svg circle,
.ogc-about-btn--secondary svg rect,
.ogc-about-btn--secondary svg polygon { fill: var(--a-accent) !important; }
.ogc-about-btn--secondary:hover {
	background: var(--a-accent);
	color: #fff;
	transform: translateY(-2px);
}
.ogc-about-btn--secondary:hover i,
.ogc-about-btn--secondary:hover svg {
	color: #ffffff !important;
	fill: #ffffff !important;
}
.ogc-about-btn--secondary:hover svg path,
.ogc-about-btn--secondary:hover svg circle,
.ogc-about-btn--secondary:hover svg rect,
.ogc-about-btn--secondary:hover svg polygon { fill: #ffffff !important; }
.ogc-about-btn--link {
	background: transparent;
	color: var(--a-accent);
	padding: 15px 8px;
}
.ogc-about-btn--link:hover { color: var(--a-primary); gap: 14px; }
.ogc-about-btn i,
.ogc-about-btn svg { font-size: 15px; width: 15px; height: 15px; transition: transform .25s; }
.ogc-about-btn:hover svg,
.ogc-about-btn:hover i { transform: translateX(3px); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
	.ogc-about__container { gap: 50px; }
	.ogc-about__visual-shape { width: 88%; height: 88%; }
	.ogc-about__stat { padding: 14px 18px; min-width: 110px; }
	.ogc-about__stat-num { font-size: 24px; }
	.ogc-about__exp-badge .num { font-size: 36px; }
}

@media (max-width: 880px) {
	.ogc-about { padding: 60px 20px; }
	.ogc-about__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.ogc-about[data-image-pos="right"] .ogc-about__visual { order: 1; }
	.ogc-about[data-image-pos="right"] .ogc-about__content { order: 2; }
	.ogc-about__visual { min-height: 360px; max-width: 540px; margin: 0 auto; width: 100%; }
	.ogc-about__image { min-height: 360px; }
}

@media (max-width: 600px) {
	.ogc-about { padding: 50px 16px; }
	.ogc-about__visual { min-height: 280px; }
	.ogc-about__image { min-height: 280px; }
	.ogc-about__visual-shape { display: none; }
	.ogc-about__image { transform: none; }
	.ogc-about__stat { padding: 11px 14px; min-width: 95px; }
	.ogc-about__stat-num { font-size: 20px; }
	.ogc-about__stat-label { font-size: 10px; }
	.ogc-about__stat--1 { left: 10px; top: 10px; }
	.ogc-about__stat--2 { right: 10px; bottom: 10px; }
	.ogc-about__stat--3 { right: 10px; }
	.ogc-about__exp-badge { padding: 14px 18px; bottom: -14px; left: 10px; }
	.ogc-about__exp-badge .num { font-size: 28px; }
	.ogc-about__features { grid-template-columns: 1fr; gap: 10px; }
	.ogc-about__tabs-nav { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
	.ogc-about__tab-btn { padding: 9px 16px; font-size: 13px; white-space: nowrap; }
	.ogc-about-btn { padding: 13px 22px; font-size: 13.5px; }
	.ogc-about__ctas { width: 100%; }
	.ogc-about-btn { flex: 1 1 auto; justify-content: center; }
	.ogc-about-btn--link { flex: none; }
}
