/* ═══════════════════════════════════════════════════════════
   16-CONTACT.CSS — Contact methods grid + premium form
   ─────────────────────────────────────────────────────────── */

/* ─── Contact methods grid ─── */
.mt-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 20px 0 28px;
}

.mt-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	background: linear-gradient(150deg, rgba(15, 26, 46, 0.55), rgba(30, 58, 138, 0.35));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	text-decoration: none;
	color: #fff;
	transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
	            border-color 0.22s, background 0.22s, box-shadow 0.22s;
	position: relative;
	overflow: hidden;
}

.mt-contact-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, #60a5fa, #22d3ee);
	opacity: 0.55;
	transition: opacity 0.22s, width 0.22s;
}

.mt-contact-card:hover {
	transform: translateY(-3px);
	border-color: rgba(34, 211, 238, 0.4);
	background: linear-gradient(150deg, rgba(15, 26, 46, 0.7), rgba(30, 58, 138, 0.5));
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
.mt-contact-card:hover::before { width: 5px; opacity: 1; }

.mt-contact-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(96, 165, 250, 0.18));
	border: 1px solid rgba(34, 211, 238, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #67e8f9;
	font-size: 1.15rem;
	transition: transform 0.22s;
}

.mt-contact-card:hover .mt-contact-icon {
	transform: scale(1.08) rotate(-4deg);
}

.mt-contact-icon-fb {
	background: linear-gradient(135deg, rgba(59, 89, 152, 0.32), rgba(96, 165, 250, 0.18));
	border-color: rgba(59, 89, 152, 0.5);
	color: #93c5fd;
}

.mt-contact-icon-ig {
	background: linear-gradient(135deg, rgba(225, 48, 108, 0.3), rgba(255, 178, 56, 0.2));
	border-color: rgba(225, 48, 108, 0.5);
	color: #fbcfe8;
}

.mt-contact-body {
	flex: 1 1 auto;
	min-width: 0;
}

.mt-contact-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(219, 234, 254, 0.55);
	margin-bottom: 4px;
}

.mt-contact-value {
	font-family: 'Sora', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	word-break: break-word;
}

.mt-contact-meta {
	margin-top: 4px;
	font-size: 0.78rem;
	color: rgba(103, 232, 249, 0.7);
}

/* ─── Contact form ─── */
.mt-contact-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px;
	background: linear-gradient(150deg, rgba(15, 26, 46, 0.55), rgba(30, 58, 138, 0.35));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	margin: 20px 0;
}

.mt-form-title {
	font-family: 'Sora', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.mt-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.mt-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mt-form-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(219, 234, 254, 0.85);
	letter-spacing: 0.02em;
}

.mt-form-label em {
	font-style: normal;
	color: #fb7185;
	margin-left: 2px;
}

.mt-contact-form input[type="text"],
.mt-contact-form input[type="email"],
.mt-contact-form select,
.mt-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	color: #fff;
	font-size: 0.94rem;
	font-family: inherit;
	transition: border-color 0.18s, background 0.18s;
}

.mt-contact-form input::placeholder,
.mt-contact-form textarea::placeholder {
	color: rgba(219, 234, 254, 0.4);
}

.mt-contact-form input:focus,
.mt-contact-form select:focus,
.mt-contact-form textarea:focus {
	outline: none;
	border-color: rgba(34, 211, 238, 0.55);
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.mt-contact-form textarea {
	resize: vertical;
	min-height: 110px;
	font-family: inherit;
}

.mt-contact-form select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2367e8f9' d='M6 8L0 0h12z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 10px 7px;
	padding-right: 36px;
}

.mt-contact-form select option {
	background: #0f1a2e;
	color: #fff;
}

.mt-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
	color: #0b1426;
	font-weight: 700;
	font-size: 0.98rem;
	border: 0;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.18s, box-shadow 0.18s;
	box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
	font-family: inherit;
	align-self: flex-start;
	margin-top: 4px;
}

.mt-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(34, 211, 238, 0.45);
}

.mt-form-message {
	min-height: 20px;
	font-size: 0.88rem;
	margin: 4px 0 0;
}

.mt-form-message.is-success { color: #86efac; }
.mt-form-message.is-error   { color: #fca5a5; }

.mt-form-hint {
	margin: 4px 0 0;
	font-size: 0.78rem;
	color: rgba(219, 234, 254, 0.55);
	display: flex;
	align-items: center;
	gap: 6px;
}

.mt-form-hint i {
	color: rgba(103, 232, 249, 0.7);
	font-size: 0.78rem;
}

/* ─── Responsive ─── */
@media (max-width: 720px) {
	.mt-contact-grid { grid-template-columns: 1fr; gap: 10px; }
	.mt-contact-card { padding: 14px; }
	.mt-form-row { grid-template-columns: 1fr; }
	.mt-contact-form { padding: 18px; }
	.mt-form-submit { width: 100%; align-self: stretch; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════
   SITEMAP GRID — [myticket_sitemap]
   ─────────────────────────────────────────────────────────── */

.mt-sitemap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0;
}

.mt-sitemap[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.mt-sitemap[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.mt-sitemap[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }

.mt-sitemap-group {
	padding: 18px 20px;
	background: linear-gradient(150deg, rgba(15, 26, 46, 0.55), rgba(30, 58, 138, 0.32));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	transition: border-color 0.22s, background 0.22s;
}

.mt-sitemap-group:hover {
	border-color: rgba(34, 211, 238, 0.3);
	background: linear-gradient(150deg, rgba(15, 26, 46, 0.65), rgba(30, 58, 138, 0.42));
}

.mt-sitemap-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 12px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mt-sitemap-head i {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(96, 165, 250, 0.18));
	border: 1px solid rgba(34, 211, 238, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #67e8f9;
	font-size: 0.92rem;
	flex-shrink: 0;
}

.mt-sitemap-head h3 {
	margin: 0;
	font-family: 'Sora', sans-serif;
	font-size: 0.96rem;
	font-weight: 700;
	color: #fff;
	border: 0;
	padding: 0;
}

.mt-sitemap-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mt-sitemap-list li {
	margin: 0;
}

.mt-sitemap-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	color: rgba(219, 234, 254, 0.85);
	text-decoration: none;
	border-radius: 8px;
	font-size: 0.9rem;
	transition: background 0.16s, color 0.16s, padding-left 0.16s;
}

.mt-sitemap-list a i {
	font-size: 0.7rem;
	color: rgba(103, 232, 249, 0.6);
	transition: transform 0.18s, color 0.18s;
}

.mt-sitemap-list a:hover {
	background: rgba(96, 165, 250, 0.12);
	color: #fff;
	padding-left: 14px;
}

.mt-sitemap-list a:hover i {
	color: #a5f3fc;
	transform: translateX(3px);
}

@media (max-width: 900px) {
	.mt-sitemap,
	.mt-sitemap[data-cols="3"],
	.mt-sitemap[data-cols="4"] {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.mt-sitemap,
	.mt-sitemap[data-cols] {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}
