/* ═══════════════════════════════════════════════════════════
   14-MOBILE-NAV.CSS
   Hamburger + Sidebar Drawer (mobile only) +
   Homepage CTAs (replacing plane image) + SEO Info Popup
   ─────────────────────────────────────────────────────────── */

/* ─── HAMBURGER (inside header) ─── */
.mt-burger {
	display: none;          /* მობაილზე ხილვადია */
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	cursor: pointer;
	padding: 0;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	justify-content: center;
	transition: background 0.18s, border-color 0.18s;
	margin-right: 8px;
	flex-shrink: 0;
}
.mt-burger:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(96, 165, 250, 0.4); }
.mt-burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.2s;
}
body.mt-sidebar-open .mt-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.mt-sidebar-open .mt-burger span:nth-child(2) { opacity: 0; }
body.mt-sidebar-open .mt-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── SIDEBAR BACKDROP ─── */
.mt-sidebar-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(3, 11, 26, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 198;
}
body.mt-sidebar-open .mt-sidebar-backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ─── SIDEBAR DRAWER ─── */
.mt-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(320px, 86vw);
	background: linear-gradient(170deg, rgba(15, 26, 46, 0.98) 0%, rgba(30, 58, 138, 0.94) 100%);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-right: 1px solid rgba(255, 255, 255, 0.10);
	transform: translateX(-100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 199;
	display: flex;
	flex-direction: column;
	box-shadow: 8px 0 40px rgba(0, 0, 0, 0.5);
	padding-top: env(safe-area-inset-top, 0px);
	padding-bottom: env(safe-area-inset-bottom, 0px);
}
body.mt-sidebar-open .mt-sidebar { transform: translateX(0); }

.mt-sidebar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 18px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mt-sidebar-head .brand-name {
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.04em;
}
.mt-sidebar-head .brand-name em {
	font-style: normal;
	background: linear-gradient(90deg, #60a5fa, #22d3ee);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.mt-sidebar-close {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s;
}
.mt-sidebar-close:hover { background: rgba(255, 255, 255, 0.14); }

.mt-sidebar-nav {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 14px 12px;
}
.mt-sidebar-section-title {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(219, 234, 254, 0.45);
	padding: 8px 10px 6px;
}
.mt-sidebar-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 14px;
	border-radius: 12px;
	color: rgba(219, 234, 254, 0.88);
	text-decoration: none;
	font-size: 0.96rem;
	font-weight: 500;
	transition: background 0.16s, color 0.16s, transform 0.16s;
	margin-bottom: 2px;
}
.mt-sidebar-item i {
	width: 22px;
	font-size: 1rem;
	color: #67e8f9;
	text-align: center;
	flex-shrink: 0;
}
.mt-sidebar-item:hover {
	background: rgba(96, 165, 250, 0.14);
	color: #fff;
	transform: translateX(4px);
}
.mt-sidebar-item.is-active {
	background: linear-gradient(135deg, rgba(96, 165, 250, 0.25), rgba(34, 211, 238, 0.22));
	color: #fff;
	box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.32) inset;
}
.mt-sidebar-item.is-active i {
	color: #a5f3fc;
	filter: drop-shadow(0 0 6px rgba(103, 232, 249, 0.5));
}
.mt-sidebar-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 14px 10px;
}

.mt-sidebar-foot {
	padding: 14px 18px calc(16px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mt-sidebar-call {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 13px 16px;
	background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
	color: #0b1426;
	font-weight: 700;
	font-size: 0.98rem;
	border-radius: 14px;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(34, 211, 238, 0.28);
	transition: transform 0.18s, box-shadow 0.18s;
}
.mt-sidebar-call:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(34, 211, 238, 0.42);
}

/* ─── MOBILE ACTIVATION ─── */
@media (max-width: 1024px) {
	.mt-burger {
		display: flex !important;
		grid-column: 1;          /* header grid-ის პირველი სვეტი (h-left-ის ნაცვლად) */
		justify-self: start;
	}
	.inner-nav { display: none !important; }

	/* Home CTAs მობაილზე — გაცენტრებული, წყობა */
	.home-cta-row {
		justify-content: center;
		gap: 10px;
		margin-top: 22px;
	}
}

/* ─── DESKTOP: hide hamburger + sidebar entirely ─── */
@media (min-width: 1025px) {
	.mt-burger,
	.mt-sidebar,
	.mt-sidebar-backdrop { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE CTAs (replacing plane image)
   ─────────────────────────────────────────────────────────── */
.home-cta-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.home-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.92rem;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	font-family: inherit;
}
.home-cta i { font-size: 0.95rem; }

.home-cta-primary {
	background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
	color: #0b1426;
	box-shadow: 0 10px 28px rgba(34, 211, 238, 0.32);
}
.home-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(34, 211, 238, 0.48);
}

.home-cta-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
}
.home-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(96, 165, 250, 0.45);
	transform: translateY(-2px);
}

.home-cta-info {
	width: 44px;
	height: 44px;
	padding: 0;
	justify-content: center;
	background: rgba(34, 211, 238, 0.12);
	color: #67e8f9;
	border-color: rgba(34, 211, 238, 0.30);
}
.home-cta-info i { font-size: 1.1rem; }
.home-cta-info:hover {
	background: rgba(34, 211, 238, 0.22);
	border-color: rgba(34, 211, 238, 0.5);
}

/* ─── SEO Info Popup ─── */
.home-info-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(3, 11, 26, 0.65);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 300;
}
body.home-info-open .home-info-backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.home-info-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.94);
	width: min(560px, calc(100vw - 32px));
	max-height: calc(100vh - 64px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
	z-index: 301;
}
body.home-info-open .home-info-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.home-info-card {
	background: linear-gradient(150deg, rgba(30, 58, 138, 0.97) 0%, rgba(15, 26, 46, 0.99) 100%);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	padding: 36px 32px 30px;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
	max-height: calc(100vh - 64px);
	overflow-y: auto;
	position: relative;
}

.home-info-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s;
}
.home-info-close:hover { background: rgba(255, 255, 255, 0.16); }

.home-info-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(96, 165, 250, 0.22));
	border: 1px solid rgba(34, 211, 238, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #67e8f9;
	font-size: 1.6rem;
}

.home-info-title {
	font-family: 'Sora', sans-serif;
	font-size: 1.3rem;
	font-weight: 800;
	color: #fff;
	text-align: center;
	margin: 0 0 18px;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.home-info-body {
	color: rgba(219, 234, 254, 0.88);
	line-height: 1.65;
	font-size: 0.96rem;
}

/* WP/TinyMCE-დან ჩასმული კონტენტი — ყველა typography ცალკე */
.home-info-body > *:first-child { margin-top: 0; }
.home-info-body > *:last-child  { margin-bottom: 0; }

.home-info-body section {
	margin: 0 0 24px;
	padding: 0;
	display: block;
}

.home-info-body h1,
.home-info-body h2,
.home-info-body h3,
.home-info-body h4 {
	font-family: 'Sora', system-ui, sans-serif;
	color: #fff;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
	margin: 1.4em 0 0.6em;
}

.home-info-body h2 {
	font-size: 1.15rem;
	color: #93c5fd;
	border-left: 3px solid #60a5fa;
	padding-left: 12px;
}

.home-info-body h3 {
	font-size: 1.02rem;
	color: #bfdbfe;
}

.home-info-body h4 {
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.home-info-body p {
	margin: 0 0 12px;
	font-size: 0.94rem;
	line-height: 1.65;
}

.home-info-body strong { color: #fff; font-weight: 700; }
.home-info-body em {
	color: #a5f3fc;
	font-style: italic;
}

.home-info-body a {
	color: #67e8f9;
	text-decoration: underline;
	text-decoration-color: rgba(103, 232, 249, 0.4);
	text-underline-offset: 3px;
	transition: color 0.18s;
}
.home-info-body a:hover { color: #a5f3fc; }

.home-info-body ul,
.home-info-body ol {
	margin: 0 0 14px;
	padding-left: 1.3em;
	font-size: 0.94rem;
}
.home-info-body ul { list-style: disc; }
.home-info-body ol { list-style: decimal; }
.home-info-body li { margin-bottom: 6px; line-height: 1.55; }
.home-info-body li::marker { color: #60a5fa; }

.home-info-body blockquote {
	margin: 1em 0;
	padding: 12px 16px;
	background: rgba(96, 165, 250, 0.08);
	border-left: 3px solid #60a5fa;
	border-radius: 0 10px 10px 0;
	font-style: italic;
	color: rgba(219, 234, 254, 0.95);
}

.home-info-body code {
	padding: 2px 6px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	font-size: 0.86em;
	color: #fbbf24;
	font-family: ui-monospace, monospace;
}

.home-info-body hr {
	margin: 1.4em 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	border: 0;
}

.home-info-body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 0.8em 0;
}

.home-info-features {
	list-style: none;
	padding: 0;
	margin: 16px 0 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.home-info-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	color: rgba(219, 234, 254, 0.95);
	font-size: 0.92rem;
}
.home-info-features li i {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(34, 211, 238, 0.2);
	color: #67e8f9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	flex-shrink: 0;
}

/* Body scroll lock */
body.home-info-open,
body.mt-sidebar-open { overflow: hidden; }

@media (max-width: 600px) {
	.home-cta-row { gap: 8px; margin-top: 18px; justify-content: center; }
	.home-cta { padding: 10px 14px; font-size: 0.86rem; gap: 7px; }
	.home-cta i { font-size: 0.88rem; }
	.home-cta-info { width: 40px; height: 40px; }
	.home-cta-info i { font-size: 0.98rem; }
	.home-info-card { padding: 28px 22px 24px; border-radius: 18px; }
	.home-info-title { font-size: 1.15rem; }
	.home-info-icon { width: 56px; height: 56px; font-size: 1.4rem; }
}
