/* public-enhancements.css
 * Aesthetic / Interaction Enhancement Layer (Phase D - deferred)
 * Will include color theming extensions, hover/focus effects, transitions,
 * subtle animations, shadows, gradients – all using canonical variables.
 * Do NOT add structural rules here.
 */

/* Phase D pending – intentionally empty */

/* Service page enhancements */
.service-contact-info,
.border-top-subtle {
	border-top: 1px solid var(--surface-border, rgba(0, 0, 0, 0.08));
}

.service-contact-info strong {
	color: var(--brand-primary);
}

.service-contact-info .text-muted {
	color: var(--text-subtle, rgba(0, 0, 0, 0.65));
}

.service-icon-display .service-icon-symbol {
	font-size: 3rem;
	color: var(--theme-accent, var(--brand-primary));
	display: inline-block;
}

.service-icon-display .service-image {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(220px, 100%);
	max-width: 100%;
	max-height: clamp(140px, 35vw, 200px);
	padding: 0.5rem;
	border-radius: var(--radius-lg, 1rem);
	background: var(--surface-card, #ffffff);
	box-shadow: var(--shadow-sm, 0 6px 18px rgba(15, 23, 42, 0.05));
}

.service-icon-display .service-image .service-img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.service-contact-btn {
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-contact-btn:hover,
.service-contact-btn:focus {
	background-color: var(--brand-secondary);
	border-color: var(--brand-secondary);
	color: var(--brand-on-secondary, #ffffff);
}

/* Structured service layout */
.service-hero-figure {
	border-radius: var(--radius-xl, 1.25rem);
	overflow: hidden;
	background: var(--surface-card, #ffffff);
	box-shadow: var(--shadow-lg, 0 8px 30px rgba(15, 23, 42, 0.08));
	aspect-ratio: 16 / 9;
	max-height: clamp(220px, 60vh, 420px);
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-hero-figure img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
}

.service-feature-grid .service-feature-tile {
	border-radius: var(--radius-lg, 1rem);
	border: 1px solid var(--surface-border, rgba(15, 23, 42, 0.08));
	padding: 1.5rem;
	background: var(--surface-card, #ffffff);
	box-shadow: var(--shadow-md, 0 12px 24px rgba(15, 23, 42, 0.06));
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-feature-grid .service-feature-tile:hover,
.service-feature-grid .service-feature-tile:focus-within {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg, 0 16px 30px rgba(15, 23, 42, 0.08));
}

.service-feature-grid .feature-icon-wrap {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-secondary-soft, rgba(45, 145, 245, 0.12));
	color: var(--brand-secondary, #2d91f5);
	margin-bottom: 1rem;
}

.service-feature-grid .feature-icon-wrap i {
	font-size: 1.35rem;
}

.service-feature-grid .feature-title {
	font-weight: 600;
	color: var(--text-strong, #1b1f24);
}

.service-feature-grid .feature-text {
	color: var(--text-muted, rgba(27, 31, 36, 0.75));
}

.service-narrative p {
	font-size: 1.05rem;
	line-height: 1.8rem;
	color: var(--text-body, #27313f);
}

.service-gallery-item {
	border-radius: var(--radius-lg, 1rem);
	overflow: hidden;
	position: relative;
	border: 1px solid transparent;
	background: var(--surface-card, #ffffff);
	box-shadow: var(--shadow-sm, 0 6px 18px rgba(15, 23, 42, 0.05));
}

.service-gallery-item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.service-gallery-widget .content {
	padding: 1.5rem;
}

.service-gallery-heading {
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--text-strong, #1b1f24);
}

.service-gallery-stack {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-gallery-stack .service-gallery-item {
	margin: 0;
}

.service-legacy-panel {
	border-top: 1px solid var(--surface-border, rgba(15, 23, 42, 0.12));
	padding-top: 2.5rem;
}

.service-legacy-heading {
	font-weight: 600;
	color: var(--text-strong, #1b1f24);
}

.service-layout-cta .service-cta-btn {
	padding-inline: 2.5rem;
	padding-block: 0.9rem;
	font-weight: 600;
}
