/*
 * contact.css — styles for [land_page slug="contact"]
 * frame.css + hub.css are loaded as dependencies.
 */

/* ── Page wrapper ─────────────────────────────────────────────────────────── */
.lt-contact-wrap {
	max-width: 560px;
}

/* ── Notice / disclaimer ─────────────────────────────────────────────────── */
.lt-contact-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	background: #fef3c7;
	border: 1px solid #fcd34d;
	border-radius: 12px;
	margin-bottom: 20px;
	color: #92400e;
	font-size: .86rem;
	line-height: 1.65;
}
.lt-dark .lt-contact-notice {
	background: rgba(251,191,36,.07);
	border-color: rgba(251,191,36,.22);
	color: #fbbf24;
}
.lt-contact-notice i {
	font-size: 1rem;
	margin-top: 2px;
	flex-shrink: 0;
	color: #d97706;
}
.lt-dark .lt-contact-notice i { color: #fbbf24; }
.lt-contact-notice p { margin: 0; }

/* ── Section label ───────────────────────────────────────────────────────── */
.lt-contact-section-label {
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #94a3b8;
	margin: 0 0 10px 2px;
}
.lt-dark .lt-contact-section-label { color: #64748b; }

/* ── Contact card stack ──────────────────────────────────────────────────── */
.lt-contact-cards {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Hover accent strip on left edge */
.lt-contact-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: var(--lt-card, #fff);
	border: 1px solid var(--lt-border, #e2e8f0);
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow .2s, transform .2s, border-color .2s;
	position: relative;
	overflow: hidden;
}
.lt-contact-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	border-radius: 16px 0 0 16px;
	background: var(--lt-contact-accent, #4f46e5);
	transform: scaleY(0);
	transition: transform .2s cubic-bezier(.4,0,.2,1);
}
.lt-contact-card:hover::before { transform: scaleY(1); }
.lt-contact-card:hover {
	box-shadow: 0 6px 22px rgba(0,0,0,.09);
	transform: translateY(-2px);
	border-color: var(--lt-contact-border-hover, #a5b4fc);
	color: inherit;
	text-decoration: none;
}
.lt-dark .lt-contact-card {
	background: #1e293b;
	border-color: rgba(51,65,85,.6);
}
.lt-dark .lt-contact-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,.35); }

/* Icon circle */
.lt-contact-card__icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	flex-shrink: 0;
}

/* Text block */
.lt-contact-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.lt-contact-card__value {
	font-size: .95rem;
	font-weight: 700;
	color: #1e293b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.lt-dark .lt-contact-card__value { color: #f1f5f9; }
.lt-contact-card__label {
	font-size: .76rem;
	color: #64748b;
	font-weight: 500;
}
.lt-dark .lt-contact-card__label { color: #94a3b8; }

/* Arrow */
.lt-contact-card__arrow {
	color: #cbd5e1;
	font-size: .85rem;
	transition: transform .2s, color .2s;
	flex-shrink: 0;
}
.lt-contact-card:hover .lt-contact-card__arrow {
	transform: translateX(3px);
	color: #94a3b8;
}
.lt-dark .lt-contact-card__arrow { color: #475569; }

/* WhatsApp accent */
.lt-contact-card--whatsapp { --lt-contact-accent: #16a34a; --lt-contact-border-hover: #86efac; }
/* Phone accent */
.lt-contact-card--phone    { --lt-contact-accent: #2563eb; --lt-contact-border-hover: #93c5fd; }
/* Email accent */
.lt-contact-card--email    { --lt-contact-accent: #d97706; --lt-contact-border-hover: #fcd34d; }

/* ── Entry animation ─────────────────────────────────────────────────────── */
@keyframes ltContactIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}
.lt-contact-cards .lt-contact-card {
	animation: ltContactIn .3s cubic-bezier(.4,0,.2,1) both;
}
.lt-contact-cards .lt-contact-card:nth-child(1) { animation-delay:  0ms; }
.lt-contact-cards .lt-contact-card:nth-child(2) { animation-delay: 60ms; }
.lt-contact-cards .lt-contact-card:nth-child(3) { animation-delay:120ms; }

/* ── Co-Founder / Team profile card ─────────────────────────────────────── */

/* Extra top spacing for the team section label */
.lt-contact-team-label { margin-top: 28px; }

.lt-contact-profile-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 22px 20px;
	background: #fff;
	border: 1px solid rgba(99,102,241,.18);
	border-radius: 18px;
	position: relative;
	overflow: hidden;
	animation: ltContactIn .3s cubic-bezier(.4,0,.2,1) both;
	animation-delay: 200ms;
}

/* Decorative radial glow in top-right corner */
.lt-contact-profile-card::after {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 65%);
	pointer-events: none;
}
.lt-dark .lt-contact-profile-card {
	background: #1e293b;
	border-color: rgba(99,102,241,.25);
}
.lt-dark .lt-contact-profile-card::after {
	background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 65%);
}

/* Avatar circle */
.lt-contact-profile-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: #fff;
	font-size: 1.35rem;
	font-weight: 800;
	font-family: 'Inter', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(79,70,229,.38);
	letter-spacing: .03em;
	position: relative;
	z-index: 1;
}

/* Info column */
.lt-contact-profile-info {
	flex: 1;
	min-width: 0;
	padding-top: 2px;
	position: relative;
	z-index: 1;
}

/* Name + badge row */
.lt-contact-profile-head {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 4px;
}

.lt-contact-profile-name {
	font-size: 1.05rem;
	font-weight: 800;
	color: #1e293b;
	line-height: 1.3;
}
.lt-dark .lt-contact-profile-name { color: #f1f5f9; }

.lt-contact-profile-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 10px;
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: #fff;
	font-size: .6rem;
	font-weight: 800;
	font-family: 'Inter', sans-serif;
	border-radius: 20px;
	letter-spacing: .07em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(79,70,229,.3);
}
.lt-contact-profile-badge i { font-size: .6rem; }

/* Role subtitle */
.lt-contact-profile-role {
	font-size: .8rem;
	color: #64748b;
	font-weight: 500;
	margin-bottom: 13px;
}
.lt-dark .lt-contact-profile-role { color: #94a3b8; }

/* Contact chips */
.lt-contact-profile-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.lt-contact-profile-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 13px;
	border-radius: 20px;
	font-size: .78rem;
	font-weight: 600;
	text-decoration: none;
	transition: opacity .15s, transform .15s, box-shadow .15s;
	white-space: nowrap;
}
.lt-contact-profile-link i { font-size: .75rem; }
.lt-contact-profile-link:hover {
	text-decoration: none;
	opacity: .88;
	transform: translateY(-1px);
	box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

.lt-contact-profile-link--phone {
	background: #dbeafe;
	color: #1d4ed8;
}
.lt-dark .lt-contact-profile-link--phone {
	background: rgba(37,99,235,.18);
	color: #93c5fd;
}

.lt-contact-profile-link--email {
	background: #fef3c7;
	color: #b45309;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.lt-dark .lt-contact-profile-link--email {
	background: rgba(217,119,6,.12);
	color: #fcd34d;
}

@media (max-width: 420px) {
	.lt-contact-profile-card { gap: 14px; padding: 18px 16px; }
	.lt-contact-profile-avatar { width: 54px; height: 54px; font-size: 1.15rem; }
	.lt-contact-profile-link { font-size: .73rem; padding: 5px 11px; }
}

/* ── Empty / not-configured state ───────────────────────────────────────── */
.lt-contact-empty {
	text-align: center;
	padding: 40px 20px;
	color: #94a3b8;
	font-size: .88rem;
}
.lt-dark .lt-contact-empty { color: #475569; }
.lt-contact-empty i {
	display: block;
	font-size: 2rem;
	margin-bottom: 10px;
	color: #cbd5e1;
}
.lt-dark .lt-contact-empty i { color: #334155; }
