/* ============================================================
   Consultation Scheduler page template
   Aligned with the Xytex subscription design system
   (see subscription-payment.css)
   Primary palette: LIGHT TEAL #63D0DF · SMOKE #D2D0CD · PEWTER #99999A · CHARCOAL #262729
   Supplemental: ICE GRAY #DBD9D6 · SLATE #55565A · NAVY #003B71 · DARK TEAL #00ACC8 · GOLD #FFB547
   ============================================================ */

:root {
	--xytex-white:       #ffffff;
	--xytex-navy:        #003B71;
	--xytex-gold:        #FFB547;
	--xytex-teal:        #63D0DF;
	--xytex-teal-dark:   #00ACC8;
	--xytex-teal-hover:  color-mix(in srgb, var(--xytex-teal-dark) 72%, var(--xytex-navy) 28%);
	--xytex-teal-light:  color-mix(in srgb, var(--xytex-teal) 28%, var(--xytex-white));
	--xytex-teal-xlight: color-mix(in srgb, var(--xytex-teal) 14%, var(--xytex-white));
	--xytex-slate:       #55565A;
	--xytex-slate-dark:  #262729;
	--xytex-gray-border: #DBD9D6;
	--xytex-gray-bg:     color-mix(in srgb, #D2D0CD 28%, var(--xytex-white));
	--xytex-text:        #737374;
	--xytex-text-muted:  #737374;
	--xytex-radius:      8px;
	--xytex-radius-lg:   14px;
	--xytex-shadow:      0 2px 16px rgba(99, 208, 223, 0.12);
	--xytex-shadow-lg:   0 8px 40px rgba(99, 208, 223, 0.2);
	--xytex-transition:  all 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Box-sizing reset ────────────────────────────────────── */
.consultation-scheduler-hero *,
.consultation-scheduler-specialists *,
.consultation-scheduler-cta * {
	box-sizing: border-box;
}

/* ============================================================
   HERO
   ============================================================ */
.consultation-scheduler-hero {
	background: linear-gradient(135deg, var(--xytex-teal-dark) 0%, var(--xytex-teal) 100%);
	padding: 60px 0 52px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.consultation-scheduler-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 72% 50%, rgba(255,255,255,0.18) 0%, transparent 62%);
	pointer-events: none;
}

/* Decorative circle */
.consultation-scheduler-hero::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.24);
	top: -120px;
	left: -80px;
	pointer-events: none;
}

.consultation-scheduler-hero .container {
	position: relative;
	z-index: 1;
}

.consultation-scheduler-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 auto 18px;
	padding: 5px 18px;
	background: rgba(99,208,223,0.20);
	color: rgba(99, 208, 223, 0.96);
	border: 1px solid rgba(99,208,223,0.38);
	border-radius: 30px;
	font-family: "gothammediumregular", Arial, Helvetica, sans-serif;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.consultation-scheduler-hero__title {
	max-width: 900px;
	margin: 0 auto 22px;
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--xytex-white);
}

/* Accent bar under the title */
.consultation-scheduler-hero__title::after {
	content: '';
	display: block;
	width: 64px;
	height: 4px;
	margin: 20px auto 0;
	border-radius: 999px;
	background: rgba(255,255,255,0.9);
}

.consultation-scheduler-hero__title .consultation-scheduler-heading__accent {
	color: var(--xytex-white);
	font-style: normal;
}

.consultation-scheduler-hero__intro {
	max-width: 620px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255,255,255,0.85);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.consultation-scheduler-trust-bar {
	background: var(--xytex-white);
	border-bottom: 1px solid var(--xytex-gray-border);
	padding: 18px 0;
}

.consultation-scheduler-trust-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}

.consultation-scheduler-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 28px;
	font-size: 13.5px;
	color: var(--xytex-text-muted);
}

.consultation-scheduler-trust-item svg {
	color: var(--xytex-teal);
	flex-shrink: 0;
}

.consultation-scheduler-trust-item strong {
	color: var(--xytex-text);
	font-weight: 700;
}

.consultation-scheduler-trust-divider {
	width: 1px;
	height: 28px;
	background: var(--xytex-gray-border);
	flex-shrink: 0;
}

/* ============================================================
   SPECIALISTS SECTION
   ============================================================ */
.consultation-scheduler-specialists {
	background: var(--xytex-gray-bg);
	padding: 52px 0 64px;
}

.consultation-scheduler-specialists__label {
	position: relative;
	margin: 0 0 40px;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--xytex-text-muted);
}

.consultation-scheduler-specialists__label::before,
.consultation-scheduler-specialists__label::after {
	content: "";
	position: absolute;
	top: 50%;
	width: calc(50% - 150px);
	height: 1px;
	background: var(--xytex-gray-border);
}

.consultation-scheduler-specialists__label::before {
	left: 0;
}

.consultation-scheduler-specialists__label::after {
	right: 0;
}

.consultation-scheduler-specialists__label-text {
	display: inline-block;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.consultation-scheduler-specialists__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

/* ── Specialist Card ─────────────────────────────────────── */
.consultation-specialist-card {
	box-sizing: border-box;
	width: 280px;
	max-width: 100%;
	background: var(--xytex-white);
	border: 1px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--xytex-transition);
}

.consultation-specialist-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--xytex-shadow-lg);
	border-color: var(--xytex-teal);
}

@media (min-width: 600px) and (max-width: 991px) {
	.consultation-specialist-card {
		width: calc(50% - 12px);
	}
}

.consultation-specialist-card__media {
	background: var(--xytex-teal-xlight);
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.consultation-specialist-card__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 230px;
	object-fit: cover;
}

.consultation-specialist-card__placeholder {
	width: 120px;
	height: 120px;
	margin: 40px auto;
	border-radius: 50%;
	background: var(--xytex-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--xytex-shadow);
}

.consultation-specialist-card__initials {
	font-size: 32px;
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--xytex-teal-dark);
}

.consultation-specialist-card__body {
	padding: 22px 22px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.consultation-specialist-card__role {
	margin: 0 0 5px;
	padding-bottom: 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--xytex-teal-dark);
}

.consultation-specialist-card__name {
	margin: 0 0 8px;
	padding-bottom: 0;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--xytex-slate-dark);
}

.consultation-specialist-card__desc {
	margin: 0 0 20px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--xytex-text-muted);
	flex: 1;
}

.consultation-specialist-card__desc p {
	margin: 0 0 8px;
}

.consultation-specialist-card__desc p:last-child {
	margin-bottom: 0;
}

.consultation-specialist-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: auto;
	width: 100%;
	padding: 13px 20px;
	border: 2px solid var(--xytex-teal);
	border-radius: var(--xytex-radius);
	background: transparent;
	color: var(--xytex-teal-dark) !important;
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: var(--xytex-transition);
}

.consultation-specialist-card__btn:hover,
.consultation-specialist-card__btn:focus {
	background: var(--xytex-teal-dark) !important;
	border-color: var(--xytex-teal-dark);
	color: var(--xytex-white) !important;
	text-decoration: none;
}

.consultation-specialist-card__btn-arrow {
	margin-left: 2px;
	transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
}

.consultation-specialist-card__btn:hover .consultation-specialist-card__btn-arrow {
	transform: translateX(3px);
}

.consultation-scheduler-specialists__empty {
	text-align: center;
	color: var(--xytex-text-muted);
	font-size: 15px;
}

/* ============================================================
   CTA
   ============================================================ */
.consultation-scheduler-cta {
	background: var(--xytex-gray-bg);
	padding: 0 0 64px;
}

.consultation-scheduler-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 24px;
	padding: 32px 28px;
	background: linear-gradient(135deg, var(--xytex-teal-dark) 0%, var(--xytex-teal) 100%);
	border-radius: var(--xytex-radius-lg);
	position: relative;
	overflow: hidden;
}

.consultation-scheduler-cta__inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 82% 50%, rgba(255,255,255,0.18) 0%, transparent 60%);
	pointer-events: none;
}

@media (min-width: 768px) {
	.consultation-scheduler-cta__inner {
		flex-direction: row;
		align-items: center;
		gap: 28px;
		padding: 32px 40px;
	}
}

.consultation-scheduler-cta__icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255,255,255,0.20);
	border: 1px solid rgba(255,255,255,0.32);
	color: var(--xytex-white);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.consultation-scheduler-cta__text {
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.consultation-scheduler-cta__title {
	margin: 0 0 8px;
	padding-bottom: 0;
	font-size: clamp(20px, 2.5vw, 26px);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.2;
	color: var(--xytex-white);
}

.consultation-scheduler-cta__desc {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(255,255,255,0.88);
}

.consultation-scheduler-cta__action {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.consultation-scheduler-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: normal;
	text-align: center;
	min-width: 210px;
	padding: 15px 30px;
	border: 2px solid var(--xytex-white);
	border-radius: var(--xytex-radius);
	background: var(--xytex-white);
	color: var(--xytex-teal-dark) !important;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: var(--xytex-transition);
}

.consultation-scheduler-cta__btn:hover,
.consultation-scheduler-cta__btn:focus {
	background: transparent;
	color: var(--xytex-white) !important;
	text-decoration: none;
	transform: translateY(-1px);
}

/* ============================================================
   TOP CTA (standalone teal button above specialists)
   ============================================================ */
.consultation-scheduler-top-cta {
	margin-bottom: 52px;
	text-align: center;
}

.consultation-scheduler-top-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: normal;
	text-align: center;
	min-width: 210px;
	padding: 15px 30px;
	border: 2px solid var(--xytex-teal-dark);
	border-radius: var(--xytex-radius);
	background: var(--xytex-teal-dark);
	color: var(--xytex-white) !important;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: var(--xytex-transition);
}

.consultation-scheduler-top-cta__btn:hover,
.consultation-scheduler-top-cta__btn:focus {
	background: transparent;
	color: var(--xytex-teal-dark) !important;
	text-decoration: none;
	transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
	.consultation-specialist-card {
		width: calc(50% - 12px);
	}
}

@media (max-width: 680px) {
	.consultation-scheduler-hero {
		padding: 44px 0 40px;
	}

	.consultation-scheduler-trust-bar__inner {
		flex-direction: column;
		gap: 4px;
	}

	.consultation-scheduler-trust-divider {
		width: 40px;
		height: 1px;
	}

	.consultation-scheduler-specialists {
		padding: 40px 0 48px;
	}

	.consultation-scheduler-specialists__label::before,
	.consultation-scheduler-specialists__label::after {
		width: 12%;
	}

	.consultation-specialist-card {
		width: 100%;
		max-width: 340px;
	}

	.consultation-scheduler-cta__btn {
		width: 100%;
	}
}
