/* ============================================================
   ONVORE — Contact page
   Channel grid, message form, meeting booking, floating actions
   ============================================================ */

/* -------------- Hero -------------- */

.onvore-contact-hero {
	padding: 72px 0 56px;
	background:
		radial-gradient(900px 360px at 18% -10%, rgba(189, 30, 81, 0.10), transparent 70%),
		radial-gradient(700px 320px at 92% 0%, rgba(247, 181, 0, 0.10), transparent 70%),
		linear-gradient(180deg, #fbf6f9 0%, #ffffff 100%);
	border-bottom: 1px solid var(--onvore-line);
}

.onvore-contact-hero__title {
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.1;
	font-weight: 800;
	margin: 8px 0 14px;
	letter-spacing: -0.02em;
	color: var(--onvore-ink);
}

.onvore-contact-hero__subtitle {
	font-size: 18px;
	color: var(--onvore-ink-soft);
	max-width: 640px;
	margin: 0 0 28px;
}

.onvore-contact-hero__quick {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.onvore-contact-hero__meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: 6px;
	color: var(--onvore-muted);
	font-size: 14px;
}

.onvore-contact-hero__meta::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #1b8a4a;
	box-shadow: 0 0 0 4px rgba(27, 138, 74, 0.18);
}

/* -------------- Channel grid -------------- */

.onvore-channels {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 12px;
}

@media (max-width: 1100px) { .onvore-channels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .onvore-channels { grid-template-columns: 1fr; gap: 14px; } }

.onvore-channel-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid var(--onvore-line);
	border-radius: 16px;
	padding: 24px 22px;
	box-shadow: 0 1px 2px rgba(14, 10, 31, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	overflow: hidden;
}

.onvore-channel-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(189, 30, 81, 0.0), rgba(247, 181, 0, 0.0));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.onvore-channel-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px -16px rgba(14, 10, 31, 0.18);
	border-color: rgba(189, 30, 81, 0.18);
}

.onvore-channel-card:hover::before {
	background: linear-gradient(135deg, rgba(189, 30, 81, 0.45), rgba(247, 181, 0, 0.45));
	opacity: 1;
}

.onvore-channel-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--onvore-brand-soft);
	color: var(--onvore-brand);
	margin-bottom: 16px;
}

.onvore-channel-card__icon--gold  { background: #fff4d6; color: #b67e00; }
.onvore-channel-card__icon--green { background: #def7e6; color: #1b8a4a; }
.onvore-channel-card__icon--ink   { background: #e8e6ee; color: var(--onvore-ink); }
.onvore-channel-card__icon--blue  { background: #e7eefe; color: #2255b8; }
.onvore-channel-card__icon--purple{ background: #ede4ff; color: #5b3ebf; }

.onvore-channel-card__title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--onvore-ink);
}

.onvore-channel-card__desc {
	font-size: 14px;
	color: var(--onvore-ink-soft);
	margin: 0 0 14px;
	flex: 1;
}

.onvore-channel-card__meta {
	font-size: 13px;
	color: var(--onvore-muted);
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.onvore-channel-card__meta strong {
	color: var(--onvore-ink);
	font-weight: 600;
}

.onvore-channel-card__action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 14px;
	color: var(--onvore-brand);
	text-decoration: none;
	margin-top: auto;
	align-self: flex-start;
	transition: gap 0.15s ease;
}

.onvore-channel-card__action:hover {
	gap: 10px;
	color: var(--onvore-brand-hover);
}

.onvore-channel-card__action svg {
	width: 14px;
	height: 14px;
}

/* -------------- Form + Sidebar -------------- */

.onvore-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

@media (max-width: 920px) {
	.onvore-contact-grid { grid-template-columns: 1fr; gap: 24px; }
}

.onvore-contact-card {
	background: #ffffff;
	border: 1px solid var(--onvore-line);
	border-radius: 18px;
	padding: 36px;
	box-shadow: 0 4px 16px -8px rgba(14, 10, 31, 0.10), 0 1px 2px rgba(14, 10, 31, 0.04);
}

@media (max-width: 540px) { .onvore-contact-card { padding: 22px; } }

.onvore-contact-card__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--onvore-ink);
}

.onvore-contact-card__lead {
	color: var(--onvore-muted);
	margin: 0 0 24px;
	font-size: 14px;
}

.onvore-contact-form {
	display: grid;
	gap: 18px;
}

.onvore-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

@media (max-width: 600px) { .onvore-contact-form__row { grid-template-columns: 1fr; gap: 18px; } }

.onvore-contact-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--onvore-ink);
	margin-bottom: 7px;
	letter-spacing: 0.01em;
}

.onvore-contact-form label .req {
	color: var(--onvore-brand);
	margin-left: 2px;
}

.onvore-contact-form input,
.onvore-contact-form select,
.onvore-contact-form textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid #cfc6db;
	border-radius: 10px;
	background: #ffffff;
	font: inherit;
	font-size: 15px;
	color: var(--onvore-ink);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	box-shadow: inset 0 1px 0 rgba(14, 10, 31, 0.02);
}

.onvore-contact-form input::placeholder,
.onvore-contact-form textarea::placeholder {
	color: #9c93a8;
}

.onvore-contact-form input:hover,
.onvore-contact-form select:hover,
.onvore-contact-form textarea:hover {
	border-color: #a89cba;
}

.onvore-contact-form textarea {
	min-height: 160px;
	resize: vertical;
	line-height: 1.5;
}

.onvore-contact-form input:focus,
.onvore-contact-form select:focus,
.onvore-contact-form textarea:focus {
	outline: none;
	border-color: var(--onvore-brand);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(189, 30, 81, 0.15);
}

.onvore-contact-form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%23766f82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px;
	cursor: pointer;
}

.onvore-contact-form__submit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-top: 6px;
	flex-wrap: wrap;
}

.onvore-contact-form__privacy {
	font-size: 12px;
	color: var(--onvore-muted);
	margin: 0;
}

.onvore-contact-form__privacy a {
	color: var(--onvore-brand);
	text-decoration: none;
}

/* Sidebar */

.onvore-contact-aside {
	display: grid;
	gap: 16px;
	position: sticky;
	top: 96px;
}

@media (max-width: 920px) { .onvore-contact-aside { position: static; } }

.onvore-aside-block {
	background: #ffffff;
	border: 1px solid var(--onvore-line);
	border-radius: 16px;
	padding: 22px;
	box-shadow: 0 1px 2px rgba(14, 10, 31, 0.04);
}

.onvore-aside-block--brand {
	background: linear-gradient(135deg, #1a0e2e 0%, #2d1346 100%);
	border-color: #2d1346;
	color: #ffffff;
}

.onvore-aside-block__lead {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
}

.onvore-aside-block__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 12px;
	color: inherit;
}

.onvore-aside-block__title svg {
	width: 18px;
	height: 18px;
	color: var(--onvore-brand);
}

.onvore-aside-block--brand .onvore-aside-block__title svg {
	color: var(--onvore-gold);
}

.onvore-aside-block__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
	font-size: 14px;
	color: var(--onvore-ink-soft);
}

.onvore-aside-block--brand .onvore-aside-block__list {
	color: rgba(255, 255, 255, 0.82);
}

.onvore-aside-block__list strong {
	color: var(--onvore-ink);
}

.onvore-aside-block--brand .onvore-aside-block__list strong {
	color: #ffffff;
}

.onvore-aside-block__contact {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 16px;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid var(--onvore-line);
	color: var(--onvore-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.onvore-aside-block__contact:hover {
	background: var(--onvore-brand-soft);
	color: var(--onvore-brand);
	transform: translateY(-1px);
}

.onvore-aside-block__contact + .onvore-aside-block__contact { margin-top: 8px; }

.onvore-aside-block__contact svg {
	width: 16px;
	height: 16px;
	color: var(--onvore-brand);
	flex-shrink: 0;
}

/* WhatsApp variant — green button that pops on the dark gradient */
.onvore-aside-block__contact--wa {
	background: #25D366;
	border-color: #25D366;
	color: #0a3a14;
}

.onvore-aside-block__contact--wa:hover {
	background: #1ebe57;
	border-color: #1ebe57;
	color: #07270d;
}

.onvore-aside-block__contact--wa svg { color: #0a3a14; }
.onvore-aside-block__contact--wa:hover svg { color: #07270d; }

/* -------------- Meeting booking -------------- */

.onvore-meeting {
	background: linear-gradient(135deg, #fff4d6 0%, #ffffff 60%, #fce4ec 100%);
	border-radius: 24px;
	padding: 48px;
	border: 1px solid var(--onvore-line);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
	gap: 36px;
	align-items: center;
}

@media (max-width: 920px) {
	.onvore-meeting { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
}

.onvore-meeting__title {
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.15;
	font-weight: 800;
	margin: 8px 0 14px;
	color: var(--onvore-ink);
}

.onvore-meeting__lead {
	color: var(--onvore-ink-soft);
	font-size: 16px;
	margin: 0 0 22px;
}

.onvore-meeting__bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	display: grid;
	gap: 8px;
	font-size: 14px;
	color: var(--onvore-ink-soft);
}

.onvore-meeting__bullets li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.onvore-meeting__bullets li::before {
	content: "✓";
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: var(--onvore-brand);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.onvore-meeting__embed {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid var(--onvore-line);
	overflow: hidden;
	min-height: 540px;
	box-shadow: 0 12px 30px -18px rgba(14, 10, 31, 0.20);
}

.onvore-meeting__embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 540px;
	border: 0;
}

.onvore-meeting__embed-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px 28px;
	min-height: 540px;
	color: var(--onvore-muted);
	background: repeating-linear-gradient(45deg, #fbf6f9, #fbf6f9 10px, #ffffff 10px, #ffffff 20px);
}

.onvore-meeting__embed-placeholder svg {
	width: 64px;
	height: 64px;
	color: var(--onvore-brand);
	opacity: 0.6;
	margin-bottom: 16px;
}

.onvore-meeting__embed-placeholder h4 {
	color: var(--onvore-ink);
	margin: 0 0 6px;
}

/* -------------- FAQ shortcut -------------- */

.onvore-faq-strip {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 22px;
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--onvore-line);
	border-radius: 18px;
	padding: 26px 32px;
}

@media (max-width: 640px) {
	.onvore-faq-strip { grid-template-columns: 1fr; text-align: center; padding: 22px; }
}

.onvore-faq-strip__title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 4px;
	color: var(--onvore-ink);
}

.onvore-faq-strip__lead {
	color: var(--onvore-muted);
	margin: 0;
	font-size: 14px;
}

/* -------------- Floating actions -------------- */

.onvore-floating {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 80;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}

.onvore-floating__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--onvore-brand);
	color: #ffffff;
	border: 0;
	border-radius: 999px;
	padding: 14px 20px 14px 16px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 12px 30px -8px rgba(189, 30, 81, 0.45);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.onvore-floating__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px -8px rgba(189, 30, 81, 0.55);
}

.onvore-floating__btn--wa {
	background: #25D366;
	box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
}

.onvore-floating__btn--wa:hover {
	background: #1ebe57;
	box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.6);
}

.onvore-floating__btn svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

@media (max-width: 540px) {
	.onvore-floating { bottom: 16px; right: 16px; gap: 10px; }
	.onvore-floating__btn { padding: 12px; }
	.onvore-floating__btn span { display: none; }
}

/* -------------- Live chat modal (placeholder UI) -------------- */

.onvore-chat-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(14, 10, 31, 0.55);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.onvore-chat-modal[data-open="1"] {
	opacity: 1;
	pointer-events: auto;
}

.onvore-chat-modal__panel {
	background: #ffffff;
	border-radius: 18px;
	width: 380px;
	max-width: 100%;
	height: 540px;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(14, 10, 31, 0.4);
	transform: translateY(20px);
	transition: transform 0.25s ease;
}

.onvore-chat-modal[data-open="1"] .onvore-chat-modal__panel {
	transform: translateY(0);
}

.onvore-chat-modal__header {
	padding: 18px 22px;
	background: linear-gradient(135deg, #1a0e2e 0%, var(--onvore-brand) 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.onvore-chat-modal__header h3 {
	margin: 0 0 2px;
	font-size: 16px;
	font-weight: 700;
}

.onvore-chat-modal__header p {
	margin: 0;
	font-size: 12px;
	opacity: 0.8;
}

.onvore-chat-modal__close {
	background: rgba(255, 255, 255, 0.16);
	border: 0;
	color: #ffffff;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	font-size: 18px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.onvore-chat-modal__close:hover { background: rgba(255, 255, 255, 0.28); }

.onvore-chat-modal__body {
	flex: 1;
	padding: 28px 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: center;
	color: var(--onvore-muted);
	background: #fbf6f9;
}

.onvore-chat-modal__body svg {
	width: 56px;
	height: 56px;
	color: var(--onvore-brand);
	opacity: 0.7;
}

.onvore-chat-modal__body h4 {
	margin: 0;
	color: var(--onvore-ink);
	font-size: 16px;
}

.onvore-chat-modal__body p {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
}

.onvore-chat-modal__footer {
	padding: 16px 22px;
	border-top: 1px solid var(--onvore-line);
	background: #ffffff;
	display: grid;
	gap: 8px;
}

.onvore-chat-modal__alt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border-radius: 10px;
	background: #f4f7f5;
	color: var(--onvore-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.15s ease;
}

.onvore-chat-modal__alt:hover { background: #e7ece9; }

.onvore-chat-modal__alt svg {
	width: 16px;
	height: 16px;
	color: #25D366;
}

@media (max-width: 540px) {
	.onvore-chat-modal { padding: 0; }
	.onvore-chat-modal__panel { width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
}

/* -------------- Utility -------------- */

.onvore-mb-32 { margin-bottom: 32px; }
.onvore-mb-48 { margin-bottom: 48px; }

.onvore-section-eyebrow-center {
	text-align: center;
	display: block;
}
