/* ==========================================================================
   Velocity by MedShift — Contact + Legal page templates
   Scoped classes: velp-ct- (contact) / velp-lg- (legal)
   Reuses global vel-* tokens & components from velocity.css
   ========================================================================== */

.velp-ct-center { text-align: center; }

/* ==========================================================================
   Contact — hero
   ========================================================================== */

.velp-ct-hero {
	background: #fff;
	padding: 72px 0 0;
	text-align: center;
}

.velp-ct-h1 {
	font-size: clamp(38px, 5.2vw, 56px);
	line-height: 1.08;
	font-weight: 800;
	color: var(--vel-navy);
	margin: 0 0 20px;
	letter-spacing: -0.01em;
}

.velp-ct-lead {
	max-width: 560px;
	margin: 0 auto 48px;
	font-size: 17px;
	line-height: 1.65;
	color: var(--vel-slate);
}

.velp-ct-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	text-align: left;
	max-width: 940px;
	margin: 0 auto;
}

.velp-ct-card {
	background: #fff;
	border: 1px solid var(--vel-line);
	border-radius: var(--vel-radius);
	box-shadow: var(--vel-shadow-soft);
	padding: 30px;
}

.velp-ct-card-title {
	font-size: 20px;
	font-weight: 800;
	color: var(--vel-navy);
	margin: 0 0 6px;
}

.velp-ct-card-sub {
	font-size: 14px;
	line-height: 1.55;
	color: var(--vel-slate);
	margin: 0 0 22px;
}

/* ---------- calendar mock (decorative) ---------- */

.velp-ct-cal {
	border: 1px solid var(--vel-line);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 20px;
}

.velp-ct-cal-month {
	display: block;
	font-size: 13.5px;
	font-weight: 800;
	color: var(--vel-navy);
	margin-bottom: 12px;
}

.velp-ct-cal-dow {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	margin-bottom: 6px;
}

.velp-ct-cal-dow span {
	text-align: center;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--vel-slate-light);
}

.velp-ct-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.velp-ct-cal-day {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--vel-slate);
}

.velp-ct-cal-day.is-open {
	background: var(--vel-bg-soft);
	color: var(--vel-navy);
	font-weight: 700;
}

.velp-ct-cal-day.is-selected {
	background: var(--vel-navy);
	color: #fff;
	font-weight: 800;
}

.velp-ct-avail {
	font-size: 13px;
	color: var(--vel-slate);
	margin: 0 0 12px;
}

.velp-ct-avail strong { color: var(--vel-navy); font-weight: 800; }

.velp-ct-times {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.velp-ct-time {
	background: var(--vel-bg-soft);
	border: 1px solid var(--vel-line);
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--vel-navy);
}

.velp-ct-cal-note { margin: 0; }

/* ---------- Request More Information (CF7) ---------- */

.velp-ct-form .wpcf7 { margin: 0; }
.velp-ct-form form { margin: 0; }

.velp-ct-form p { margin: 0 0 16px; }

.velp-ct-form label {
	display: block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vel-slate);
	line-height: 1.6;
}

.velp-ct-form input[type="text"],
.velp-ct-form input[type="email"],
.velp-ct-form input[type="tel"],
.velp-ct-form input[type="url"],
.velp-ct-form input[type="number"],
.velp-ct-form select,
.velp-ct-form textarea {
	width: 100%;
	box-sizing: border-box;
	margin-top: 6px;
	background: #fff;
	border: 1px solid var(--vel-line);
	border-radius: 10px;
	font-family: var(--vel-font);
	font-size: 14.5px;
	color: var(--vel-navy);
	text-transform: none;
	letter-spacing: 0;
	padding: 12px 14px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.velp-ct-form textarea { min-height: 120px; resize: vertical; }

.velp-ct-form input::placeholder,
.velp-ct-form textarea::placeholder { color: var(--vel-slate-light); }

.velp-ct-form input:focus,
.velp-ct-form select:focus,
.velp-ct-form textarea:focus {
	outline: none;
	border-color: var(--vel-navy-soft);
	box-shadow: 0 0 0 3px rgba(29, 50, 82, 0.08);
}

.velp-ct-form input[type="submit"],
.velp-ct-form .wpcf7-submit {
	width: 100%;
	background: var(--vel-navy);
	color: #fff;
	border: 1px solid transparent;
	border-radius: var(--vel-radius-btn);
	font-family: var(--vel-font);
	font-size: 14.5px;
	font-weight: 700;
	padding: 15px 24px;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	transition: background 0.15s ease, transform 0.15s ease;
}

.velp-ct-form input[type="submit"]:hover,
.velp-ct-form .wpcf7-submit:hover { background: var(--vel-navy-2); transform: translateY(-1px); }

.velp-ct-form .wpcf7-spinner { margin: 12px auto 0; display: block; }

.velp-ct-form .wpcf7-not-valid-tip {
	font-size: 12px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	color: #d0454c;
}

.velp-ct-form .wpcf7-not-valid { border-color: #e5a3a6; }

/* CF7 6.x hard-codes aria-hidden="true" on this box and never changes it, so
   visibility has to key off the state class CF7 puts on the form instead. */
.velp-ct-form .wpcf7-response-output {
	display: none;
	margin: 16px 0 0;
	border: 1px solid;
	border-radius: 10px;
	font-size: 13.5px;
	line-height: 1.5;
	padding: 12px 14px;
}

.velp-ct-form form.sent .wpcf7-response-output,
.velp-ct-form form.invalid .wpcf7-response-output,
.velp-ct-form form.unaccepted .wpcf7-response-output,
.velp-ct-form form.failed .wpcf7-response-output,
.velp-ct-form form.aborted .wpcf7-response-output,
.velp-ct-form form.spam .wpcf7-response-output,
.velp-ct-form form.payment-required .wpcf7-response-output { display: block; }

.velp-ct-form form.sent .wpcf7-response-output {
	color: #1c5f2c;
	background: #f0f7f0;
	border-color: #bcdcc3;
	font-weight: 500;
}

.velp-ct-form form.sent .wpcf7-response-output::before {
	content: "\2713";
	font-weight: 700;
	margin-right: 8px;
}

.velp-ct-form form.invalid .wpcf7-response-output,
.velp-ct-form form.unaccepted .wpcf7-response-output,
.velp-ct-form form.failed .wpcf7-response-output,
.velp-ct-form form.aborted .wpcf7-response-output,
.velp-ct-form form.spam .wpcf7-response-output,
.velp-ct-form form.payment-required .wpcf7-response-output {
	color: #b32d2e;
	background: #fcf0f1;
	border-color: #e5a3a6;
}

/* CF7 6.x wraps its hidden inputs in a fieldset whose default UA border
   renders as an empty box above the first field. */
.velp-ct-form .hidden-fields-container { display: none; }

/* ==========================================================================
   Contact — quote band
   ========================================================================== */

.velp-ct-quote-band {
	background: #f3f7fc;
	padding: 80px 0;
	text-align: center;
}

.velp-ct-quote {
	margin: 0 0 16px;
	padding: 0;
	border: 0;
	background: none;
	font-size: clamp(20px, 2.6vw, 26px);
	line-height: 1.45;
	font-weight: 800;
	color: var(--vel-navy);
}

.velp-ct-quote-cite {
	margin: 0;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--vel-slate);
}

/* ==========================================================================
   Contact — other ways to reach us
   ========================================================================== */

/* Figma runs one continuous #F3F7FC band from the quote through this section. */
.velp-ct-ways { padding: 90px 0; text-align: center; background: #f3f7fc; }

.velp-ct-ways .vel-h2 { margin-bottom: 44px; }

.velp-ct-ways-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: left;
	max-width: 920px;
	margin: 0 auto;
}

.velp-ct-way {
	background: #fff;
	border: 1px solid var(--vel-line);
	border-radius: var(--vel-radius);
	padding: 26px;
	box-shadow: var(--vel-shadow-rest);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.velp-ct-way:hover { transform: translateY(-3px); box-shadow: var(--vel-shadow); }

.velp-ct-way-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 11px;
	margin-bottom: 18px;
	background: #d7efff;
	color: var(--vel-navy);
}

.velp-ct-way-icon svg { width: 20px; height: 20px; }

.velp-ct-way h3 { font-size: 16px; font-weight: 800; color: var(--vel-navy); margin: 0 0 8px; }
.velp-ct-way p { font-size: 13.5px; line-height: 1.55; color: var(--vel-slate); margin: 0 0 16px; }

.velp-ct-way-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 800;
	color: var(--vel-navy) !important;
	text-decoration: none !important;
}

.velp-ct-way-link svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.velp-ct-way-link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Contact — CTA
   ========================================================================== */

.velp-ct-cta { padding: 0 0 110px; }

/* ==========================================================================
   Legal (Privacy / Terms) — shared layout
   ========================================================================== */

.velp-lg-hero { background: var(--vel-bg-soft); padding: 64px 0 60px; text-align: center; }

.velp-lg-h1 {
	font-size: clamp(32px, 4.4vw, 46px);
	font-weight: 800;
	color: var(--vel-navy);
	margin: 0;
	letter-spacing: -0.01em;
}

.velp-lg-effective {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--vel-slate);
}

.velp-lg-body { padding: 56px 0 96px; }

.velp-lg-content {
	font-size: 14.5px;
	line-height: 1.72;
	color: var(--vel-slate);
}

.velp-lg-content > p:first-child {
	font-size: 15.5px;
	color: var(--vel-navy);
	margin-bottom: 32px;
}

.velp-lg-content h2 {
	font-size: 20px;
	font-weight: 600;
	color: var(--vel-navy);
	margin: 34px 0 10px;
	letter-spacing: -0.01em;
}

.velp-lg-content h2:first-child { margin-top: 0; }

.velp-lg-content h3 {
	font-size: 15.5px;
	font-weight: 800;
	color: var(--vel-navy);
	margin: 24px 0 8px;
}

.velp-lg-content p { margin: 0 0 14px; }

.velp-lg-content a { color: var(--vel-navy); font-weight: 700; }

.velp-lg-content ul,
.velp-lg-content ol { margin: 0 0 16px; padding-left: 22px; }

.velp-lg-content li { margin-bottom: 6px; }

.velp-lg-content em { color: var(--vel-slate-light); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
	.velp-ct-ways-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
	.velp-ct-grid { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 560px) {
	.velp-ct-ways-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
	.velp-ct-hero { padding: 52px 0 64px; }
	.velp-ct-quote-band { padding: 60px 0; }
	.velp-ct-ways { padding: 64px 0; }
}
