/* ============================================================
   DGS Elements 6 — Acıbadem Üniversitesi : Hero + Header
   Video-forward, ortalanmış içerik. Beyaz metin + kiremit vurgu.
   Scope: .acu-hh
   ============================================================ */

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

.acu-hh {
	--acu-brick:    #F37021;   /* kiremit / terracotta — buton/vurgu */
	--acu-brick-d:  #C2510E;   /* hover */
	--acu-accent:   #F59B6B;   /* koyu zeminde okunur açık terracotta (başlık vurgu) */
	--acu-ink:      #2B211B;   /* sıcak koyu (fallback zemin) */
	--acu-white:    #ffffff;

	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--acu-ink);
	font-family: var(--acu-font, "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
	color: var(--acu-white);
	isolation: isolate;
}
.acu-hh--full { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
.acu-hh--auto { min-height: auto; }

/* ── Arka plan ── (video yüklenene kadar marka koyu zemin) */
.acu-hh-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--acu-ink); }

/* YouTube player (API tarafından inşa edilir; controls:0 garanti).
   NOT: YT.Player verilen <div>'i <iframe> ile DEĞİŞTİRİR (class korunmaz).
   Boyut JS ile container'a göre cover + %18 kırpma (gerçek boyut → kalite kaybı yok,
   YouTube'un üst başlık/sağ-üst buton katmanı görünür alan dışına taşar). */
.acu-hh-bg__player { position: absolute; inset: 0; z-index: 1; }
.acu-hh-bg iframe {
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	border: 0; z-index: 1; pointer-events: none;
	/* JS öncesi / JS yoksa fallback cover; JS inline px ile override eder */
	width: 100vw; height: 56.25vw; min-width: 177.78vh; min-height: 100%;
}

/* YouTube oynayana kadar üstte duran koyu örtü → ortadaki play butonu HİÇ görünmez.
   Oynamaya başlayınca (is-playing) solar; autoplay engellenirse koyu kalır (yine buton yok). */
.acu-hh-bg__cover {
	position: absolute; inset: 0; z-index: 2;
	background: var(--acu-ink);
	transition: opacity .8s ease;
	/* Şeffaf olsa bile HER ZAMAN fareyi engeller → iframe'e hover ulaşmaz,
	   YouTube'un üzerine-gelince play/pause overlay'i hiç çıkmaz.
	   (Hero butonları .acu-hh-inner z-index:4 ile bunun ÜSTÜNDE, tıklanabilir.) */
	pointer-events: auto;
}
.acu-hh-bg.is-playing .acu-hh-bg__cover { opacity: 0; }

/* MP4 arka plan video (en temiz: hiç chrome yok, tam kalite) */
.acu-hh-bg__video {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	z-index: 1; pointer-events: none;
}

/* Görsel fallback (yalnızca video YOKKEN) */
.acu-hh-bg__img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	animation: acu-hh-kb 24s ease-in-out infinite alternate;
}
@keyframes acu-hh-kb {
	from { transform: scale(1.04); }
	to   { transform: scale(1.14); }
}

/* ── Overlay: video görünür kalsın ama beyaz metin okunsun ──
   Sıcak koyu (kahve) ton — markaya uyumlu, siyah değil.
   Merkezde biraz daha koyu (ortalanmış metin için), kenarlarda video açılır. */
.acu-hh-scrim {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		linear-gradient(180deg,
			rgba(34,26,21,0.62) 0%,
			rgba(34,26,21,0.40) 30%,
			rgba(34,26,21,0.40) 60%,
			rgba(34,26,21,0.66) 100%);
}
.acu-hh-scrim::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(ellipse 62% 58% at 50% 50%, rgba(34,26,21,0.42), transparent 72%);
}

/* ============================================================
   HEADER
   ============================================================ */
.acu-hh-header {
	position: relative; z-index: 5;
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
	padding: 26px clamp(20px, 5vw, 72px);
}
.acu-hh-header--center { justify-content: center; text-align: center; }
.acu-hh-logo { display: inline-flex; align-items: center; }
.acu-hh-logo img { height: var(--acu-logo-h, 54px); width: auto; display: block; }

.acu-hh-haction { display: flex; align-items: center; gap: 22px; }
.acu-hh-phone {
	display: inline-flex; align-items: center; gap: 9px;
	color: #fff; text-decoration: none;
	font-weight: 600; font-size: 15px; letter-spacing: .01em;
	white-space: nowrap; text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.acu-hh-phone svg { width: 19px; height: 19px; color: var(--acu-accent); flex: none; }
.acu-hh-phone:hover { color: var(--acu-accent); }

.acu-hh-hbtn {
	gap: 9px;
	background: var(--acu-brick); color: #fff; text-decoration: none;
	font-weight: 600; font-size: 14.5px; letter-spacing: .015em;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	box-shadow: 0 12px 28px -10px rgba(0,0,0,.55);
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.acu-hh-hbtn:hover { background: var(--acu-brick-d); transform: translateY(-1px); }
.acu-hh-hbtn svg { width: 16px; height: 16px; }

/* ============================================================
   HERO İÇERİK — ortalanmış (tek kolon)
   ============================================================ */
.acu-hh-inner {
	position: relative; z-index: 4;
	flex: 1 1 auto;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center; text-align: center;
	width: 100%;
	padding: clamp(28px, 6vh, 70px) clamp(20px, 5vw, 72px) clamp(40px, 7vh, 84px);
}
.acu-hh-left {
	display: flex; flex-direction: column; align-items: center;
	width: 100%; max-width: 920px;
}

.acu-hh-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	background: rgba(255,255,255,.14); color: #fff;
	font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
	padding: 9px 18px; border-radius: 999px;
	border: 1px solid rgba(255,255,255,.28);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.acu-hh-eyebrow::before {
	content: ""; width: 8px; height: 8px; border-radius: 50%;
	background: var(--acu-accent); box-shadow: 0 0 0 4px rgba(245,155,107,.25);
}

.acu-hh-title {
	margin: 24px 0 0;
	font-size: clamp(38px, 5.4vw, 74px);
	line-height: 1.32;
	letter-spacing: -.02em;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 22px rgba(0,0,0,.32);
}
/* Satır kırılımlarında ğ/Ü gibi harflerin birbirine değmemesi için */
.acu-hh-title br {
	display: block;
	margin-top: 0.14em;
	content: "";
}
.acu-hh-title .acu-hh-accent {
	color: #F37021;
	display: block;
	margin-top: 0.06em;
	padding-top: 0.1em;
}

.acu-hh-sub {
	margin: 22px auto 0;
	max-width: 660px;
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.65;
	color: rgba(255,255,255,.9);
	text-shadow: 0 1px 14px rgba(0,0,0,.3);
}

.acu-hh-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; justify-content: center; }
.acu-hh-cta {
	gap: 10px;
	text-decoration: none; font-weight: 600; font-size: 16px;
	min-height: 52px;
	padding: 0 30px;
	border-radius: 999px;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}
.acu-hh-cta svg { width: 18px; height: 18px; transition: transform .2s ease; }
.acu-hh-cta:hover svg { transform: translateX(4px); }
.acu-hh-cta--primary {
	background: var(--acu-brick); color: #fff;
	box-shadow: 0 18px 38px -14px rgba(0,0,0,.6);
}
.acu-hh-cta--primary:hover { background: var(--acu-brick-d); transform: translateY(-2px); }
.acu-hh-cta--secondary {
	background: #00377B; color: #fff;
	border: 1px solid #00377B;
}
.acu-hh-cta--secondary:hover { background: #002B5E; border-color: #002B5E; transform: translateY(-2px); }

/* ── Özellik rozetleri (istatistik) ── */
.acu-hh-feats {
	list-style: none; margin: 46px 0 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: 16px 34px; justify-content: center;
}
.acu-hh-feat { display: flex; align-items: center; gap: 12px; }
.acu-hh-feat-ico {
	width: 40px; height: 40px; border-radius: 10px; flex: none;
	display: grid; place-items: center;
	background: rgba(0,55,123,.32);
	color: #fff;
	border: 1.5px solid #5C72A0;
}
.acu-hh-feat-ico svg { width: 22px; height: 22px; }
.acu-hh-feat-txt { text-align: left; font-size: 14.5px; line-height: 1.35; font-weight: 600; color: #fff; }
.acu-hh-feat-txt small { display: block; font-weight: 500; font-size: 12.5px; color: rgba(255,255,255,.72); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
	.acu-hh-header { padding: 16px 20px; }
	.acu-hh-logo img { height: calc(var(--acu-logo-h, 54px) * .8); }
	/* Tam ekran ZORLAMA yok → içerik üstten akar, üst kısım (logo+başlık) asla kesilmez */
	.acu-hh--full { min-height: auto; }
	.acu-hh-inner {
		justify-content: flex-start;   /* dikey ortalama yok → üst kesilmez */
		padding-top: 18px; padding-bottom: 44px;
	}

	.acu-hh-title { margin-top: 16px; font-size: clamp(30px, 8.5vw, 42px); line-height: 1.34; }
	.acu-hh-title br { margin-top: 0.18em; }
	.acu-hh-title .acu-hh-accent { padding-top: 0.12em; }
	.acu-hh-sub { margin-top: 16px; font-size: 15.5px; }

	/* CTA'lar: alt alta, tam genişlik, ortalı */
	.acu-hh-ctas { width: 100%; max-width: 360px; flex-direction: column; gap: 12px; margin-top: 26px; }
	.acu-hh-ctas .acu-hh-cta { width: 100%; justify-content: center; }

	/* Alttaki 3 rozet — mobilde gizle */
	.acu-hh-feats { display: none; }

	/* Mobilde hafif karartı (okunabilirlik için; fazla koyu değil) */
	.acu-hh-scrim {
		background:
			linear-gradient(180deg,
				rgba(34,26,21,0.52) 0%,
				rgba(34,26,21,0.32) 35%,
				rgba(34,26,21,0.32) 62%,
				rgba(34,26,21,0.54) 100%);
	}
	.acu-hh-scrim::after {
		background: radial-gradient(ellipse 90% 60% at 50% 40%, rgba(34,26,21,0.28), transparent 78%);
	}
}


/* ============================================================
   HERO BAŞVURU FORMU (sağ) — sol metinle eşit yükseklik, premium
   ============================================================ */
.acu-hh-right { position: relative; z-index: 4; display: flex; width: 100%; }
.acu-af {
	display: flex; flex-direction: column; width: 100%;
	background: #FBF7F2; color: var(--acu-ink, #2B211B);
	border-radius: 24px; border-top: 4px solid var(--acu-brick, #F37021);
	box-shadow: 0 46px 100px -50px rgba(0,0,0,.8), 0 1px 0 rgba(255,255,255,.4) inset;
	overflow: hidden; text-align: left;
}
.acu-af-head { padding: clamp(22px, 2.4vw, 30px) clamp(24px, 2.4vw, 32px) 2px; }
.acu-af-eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--acu-brick-d, #C2510E); }
.acu-af-title { margin: 8px 0 0; font-size: clamp(21px, 1.9vw, 26px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: var(--acu-ink); }
.acu-af-lead { margin: 6px 0 0; font-size: 13.5px; line-height: 1.5; color: rgba(43,33,27,.56); }

.acu-af-fields {
	flex: 0 1 auto; display: flex; flex-direction: column; justify-content: flex-start; gap: 15px;
	padding: clamp(16px, 1.8vw, 20px) clamp(24px, 2.4vw, 32px) clamp(10px, 1.2vw, 14px);
}
.acu-af-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px 14px; }
.acu-af-fld { display: flex; flex-direction: column; min-width: 0; }
.acu-af-fld label { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(43,33,27,.5); margin-bottom: 6px; }
.acu-af-fld input, .acu-af-fld select {
	width: 100%; height: 54px; padding: 0 15px; border-radius: 12px;
	border: 1px solid rgba(43,33,27,.16); background: #fff;
	font-family: inherit; font-size: 14.5px; font-weight: 500; color: var(--acu-ink);
	transition: border-color .18s, box-shadow .18s; -webkit-appearance: none; appearance: none;
}
.acu-af-fld select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C2510E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 15px center; padding-right: 36px;
}
.acu-af-fld input::placeholder { color: rgba(43,33,27,.4); }
.acu-af-fld input:focus, .acu-af-fld select:focus { outline: none; border-color: rgba(243,112,33,.55); box-shadow: 0 0 0 4px rgba(243,112,33,.12); }
.acu-af-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; line-height: 1.45; color: rgba(43,33,27,.6); cursor: pointer; margin-top: 2px; }
.acu-af-consent input { margin-top: 1px; width: 17px; height: 17px; accent-color: var(--acu-brick); flex: none; }
.acu-af-consent b { color: var(--acu-ink); font-weight: 700; }

.acu-af-foot { padding: 4px clamp(24px, 2.4vw, 32px) clamp(22px, 2.4vw, 28px); }
.acu-af-submit {
	width: 100%; min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	border: 0; border-radius: 14px; background: var(--acu-brick); color: #fff;
	font-family: inherit; font-size: 15px; font-weight: 800; letter-spacing: .01em; cursor: pointer;
	box-shadow: 0 18px 36px -14px rgba(243,112,33,.75); transition: background .18s, transform .18s;
}
.acu-af-submit svg { width: 18px; height: 18px; }
.acu-af-submit:hover { background: var(--acu-brick-d); transform: translateY(-1px); }
.acu-af-submit:disabled { cursor: default; transform: none; }
.acu-af-trust { display: flex; align-items: center; gap: 7px; margin: 12px 0 0; font-size: 11.5px; color: rgba(43,33,27,.5); }
.acu-af-trust svg { flex: none; color: #2e9e5b; }
.acu-af-ok { margin: 12px 0 0; font-size: 13.5px; font-weight: 600; color: #2e9e5b; }

/* ============================================================
   HERO ALTI: kompakt & premium lacivert başvuru bandı
   ============================================================ */
.acu-qbar, .acu-qbar *, .acu-qbar *::before, .acu-qbar *::after { box-sizing: border-box; }
.acu-qbar {
	--acu-brick:   #F37021;
	--acu-brick-d: #C2510E;
	--acu-accent:  #F59B6B;
	--acu-navy:    #00377B;
	--acu-ink:     #2B211B;
	position: relative; overflow: hidden;
	padding-left: clamp(20px, 5vw, 72px); padding-right: clamp(20px, 5vw, 72px);
	font-family: var(--acu-font, "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
	background:
		radial-gradient(120% 160% at 88% -30%, rgba(243,112,33,.22), transparent 52%),
		linear-gradient(180deg, #003b83 0%, var(--acu-navy, #00377B) 60%, #002a63 100%);
}
.acu-qbar::before {
	content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
	background: linear-gradient(90deg, var(--acu-brick, #F37021), var(--acu-accent, #F59B6B));
}
.acu-qbar-in {
	position: relative; z-index: 1;
	max-width: 1320px; margin: 0 auto; width: 100%;
	padding: clamp(20px, 2.4vh, 30px) 0;
	display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(24px, 3.5vw, 52px); align-items: center;
}
/* Sol metin */
.acu-qbar-copy { color: #fff; }
.acu-qbar-eyebrow { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--acu-accent, #F59B6B); }
.acu-qbar-title { margin: 8px 0 0; font-size: clamp(20px, 2.1vw, 27px); font-weight: 800; letter-spacing: -.02em; line-height: 1.14; color: #fff; }
.acu-qbar-sub { margin: 7px 0 0; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.72); max-width: 34ch; }
/* Sağ form — tek sıra + altında KVKK */
.acu-qbar-form { min-width: 0; }
.acu-qbar-row { display: flex; align-items: center; gap: 10px; }
.acu-qbar-f {
	flex: 1 1 auto; min-width: 0; height: 54px; padding: 0 15px; border-radius: 12px;
	border: 1px solid rgba(255,255,255,.16); background: #fff; color: var(--acu-ink, #2B211B);
	font-family: inherit; font-size: 15px; font-weight: 500; transition: box-shadow .18s; -webkit-appearance: none; appearance: none;
}
.acu-qbar-f::placeholder { color: rgba(43,33,27,.4); }
.acu-qbar-sel {
	flex: 0 1 150px; padding-right: 38px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C2510E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 15px center;
}
.acu-qbar-f:focus { outline: none; box-shadow: 0 0 0 4px rgba(245,155,107,.4); }
.acu-qbar-btn {
	flex: none; height: 54px; padding: 0 28px; display: inline-flex; align-items: center; gap: 8px;
	border: 0; border-radius: 12px; background: var(--acu-brick); color: #fff;
	font-family: inherit; font-size: 15px; font-weight: 800; letter-spacing: .01em; cursor: pointer; white-space: nowrap;
	box-shadow: 0 16px 30px -14px rgba(0,0,0,.6); transition: background .18s, transform .18s;
}
.acu-qbar-btn svg { width: 17px; height: 17px; }
.acu-qbar-btn:hover { background: var(--acu-brick-d); transform: translateY(-1px); }
.acu-qbar-ok { flex: none; font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.acu-qbar-kv { display: flex; align-items: center; gap: 9px; margin: 11px 0 0; font-size: 12px; line-height: 1.4; color: rgba(255,255,255,.66); cursor: pointer; }
.acu-qbar-kv input { width: 16px; height: 16px; accent-color: var(--acu-brick); flex: none; }
.acu-qbar-kv b { color: #fff; font-weight: 700; }
.acu-qbar-status { margin: 9px 0 0; font-size: 12.5px; font-weight: 600; line-height: 1.4; }
.acu-qbar-status[hidden] { display: none; }

/* ============================================================
   RESPONSIVE — hero + bant
   ============================================================ */
@media (max-width: 980px) {
	.acu-hh-top { grid-template-columns: 1fr; gap: 26px; align-items: start; }
	.acu-hh-left { max-width: 100%; }
	.acu-qbar-in { grid-template-columns: 1fr; gap: 18px; }
	.acu-qbar-row { flex-wrap: wrap; }
	.acu-qbar-f, .acu-qbar-sel { flex: 1 1 100%; }
	.acu-qbar-btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
	.acu-hh-ctas { width: 100%; max-width: 360px; flex-direction: column; }
	.acu-hh-ctas .acu-hh-cta { width: 100%; justify-content: center; }
}
