/**
 * Post-Venta Services Styles
 * Kinetic Precision Framework
 *
 * Color Palette:
 * - Navy: #001e40
 * - Light Background: #F1F3FF
 *
 * Font: Manrope
 */

:root {
	--artemis-navy: #001e40;
	--artemis-navy-light: #003366;
	--artemis-bg-light: #F1F3FF;
	--artemis-white: #ffffff;
	--artemis-text: #5a6a7a;
	--artemis-text-dark: #161c27;
}

.artemis-services-section {
	background-color: var(--artemis-bg-light);
	padding: 80px 0;
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	width: 100%;
	max-width: 100%;
}

.artemis-services-section > .elementor {
	width: 100% !important;
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.artemis-services-section > .elementor > .elementor-inner > .elementor-section-wrap,
.artemis-services-section > .elementor > .elementor-inner > .elementor-container {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Full width Elementor sections on this page */
.elementor-page-7973 .elementor-section-boxed {
	max-width: 100% !important;
	padding-left: 5% !important;
	padding-right: 5% !important;
}

.elementor-page-7973 .elementor-section-boxed .elementor-container {
	max-width: 100% !important;
}

.elementor-page-7973 .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.artemis-services-inner {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 5%;
	box-sizing: border-box;
}

.artemis-services-header {
	text-align: center;
	margin-bottom: 60px;
}

.artemis-services-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--artemis-navy);
	margin-bottom: 16px;
}

.artemis-services-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--artemis-navy);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 24px 0;
}

.artemis-services-divider {
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--artemis-navy), var(--artemis-navy-light));
	margin: 0 auto;
	border-radius: 2px;
}

.artemis-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.artemis-service-card {
	background: var(--artemis-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 30, 64, 0.08);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
				box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.artemis-service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 60px rgba(0, 30, 64, 0.15);
}

.artemis-service-card-image {
	position: relative;
	height: 180px;
	overflow: hidden;
}

.artemis-service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.artemis-service-card:hover .artemis-service-card-image img {
	transform: scale(1.08);
}

.artemis-service-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 30, 64, 0.4) 100%);
	opacity: 0.7;
}

.artemis-service-card-content {
	padding: 28px 24px 32px;
	text-align: center;
}

.artemis-service-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--artemis-navy), var(--artemis-navy-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -70px auto 20px;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 24px rgba(0, 30, 64, 0.25);
}

.artemis-service-card-icon i {
	font-size: 1.5rem;
	color: var(--artemis-white);
}

.artemis-service-card-icon svg {
	width: 28px;
	height: 28px;
	color: var(--artemis-white);
}

.artemis-service-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--artemis-navy);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 12px 0;
}

.artemis-service-card-desc {
	font-size: 0.9rem;
	color: var(--artemis-text);
	line-height: 1.6;
	margin: 0 0 24px 0;
}

.artemis-service-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--artemis-navy), var(--artemis-navy-light));
	color: var(--artemis-white);
	text-decoration: none;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artemis-service-card-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 30, 64, 0.3);
	color: var(--artemis-white);
}

.artemis-service-card-btn svg {
	transition: transform 0.3s ease;
}

.artemis-service-card-btn:hover svg {
	transform: translateX(4px);
}


.artemis-detail-section {
	background: var(--artemis-white);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.artemis-detail-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.artemis-detail-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.artemis-detail-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.artemis-detail-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 30, 64, 0.3) 0%,
		rgba(0, 30, 64, 0.7) 100%
	);
	z-index: 1;
}

.artemis-detail-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
}

.artemis-detail-hero-inner {
	text-align: center;
	max-width: 700px;
}

.artemis-detail-icon {
	width: 100px;
	height: 100px;
	background: var(--artemis-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	box-shadow: 0 12px 40px rgba(0, 30, 64, 0.3);
}

.artemis-detail-icon i {
	font-size: 2.5rem;
	color: var(--artemis-navy);
}

.artemis-detail-icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.artemis-detail-subtitle {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 12px;
}

.artemis-detail-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--artemis-white);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0;
	text-shadow: 0 4px 20px rgba(0, 30, 64, 0.3);
}

.artemis-detail-content {
	padding: 80px 0;
}

.artemis-detail-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
}

.artemis-detail-description {
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--artemis-text);
	margin-bottom: 60px;
}

.artemis-detail-description p {
	margin: 0 0 1em 0;
}

.artemis-detail-description p:last-child {
	margin-bottom: 0;
}

.artemis-detail-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

.artemis-detail-feature {
	text-align: center;
	padding: 32px 24px;
	background: var(--artemis-bg-light);
	border-radius: 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artemis-detail-feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 30, 64, 0.1);
}

.artemis-detail-feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--artemis-navy), var(--artemis-navy-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.artemis-detail-feature-icon i {
	font-size: 1.5rem;
	color: var(--artemis-white);
}

.artemis-detail-feature-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.artemis-detail-feature-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--artemis-navy);
	margin: 0 0 10px 0;
}

.artemis-detail-feature-desc {
	font-size: 0.9rem;
	color: var(--artemis-text);
	line-height: 1.6;
	margin: 0;
}

.artemis-detail-cta {
	text-align: center;
}

.artemis-detail-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 36px;
	background: linear-gradient(135deg, var(--artemis-navy), var(--artemis-navy-light));
	color: var(--artemis-white);
	text-decoration: none;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artemis-detail-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 30, 64, 0.35);
	color: var(--artemis-white);
}

.artemis-detail-cta-btn svg {
	transition: transform 0.3s ease;
}

.artemis-detail-cta-btn:hover svg {
	transform: translateX(4px);
}


@media (max-width: 1024px) {
	.artemis-services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.artemis-services-section {
		padding: 60px 0;
	}

	.artemis-services-inner {
		padding: 0 20px;
	}

	.artemis-services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.artemis-service-card-image {
		height: 140px;
	}

	.artemis-service-card-content {
		padding: 20px 16px 24px;
	}

	.artemis-service-card-icon {
		width: 50px;
		height: 50px;
		margin: -60px auto 16px;
	}

	.artemis-service-card-icon i {
		font-size: 1.25rem;
	}

	.artemis-service-card-title {
		font-size: 1rem;
	}

	.artemis-detail-hero-content {
		padding: 60px 30px;
	}

	.artemis-detail-content {
		padding: 60px 0;
	}

	.artemis-detail-inner {
		padding: 0 30px;
	}

	.artemis-detail-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.artemis-detail-hero {
		min-height: 300px !important;
	}

	.artemis-detail-hero-content {
		padding: 40px 20px;
	}

	.artemis-detail-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}

	.artemis-detail-icon i {
		font-size: 2rem;
	}

	.artemis-detail-content {
		padding: 40px 0;
	}

	.artemis-detail-inner {
		padding: 0 20px;
	}

	.artemis-detail-description {
		font-size: 1rem;
		margin-bottom: 40px;
	}

	.artemis-detail-features {
		grid-template-columns: 1fr;
	}

	.artemis-detail-feature {
		padding: 24px 20px;
	}
}

/* =========================================
   Taller Form - Contact Form 7
   ========================================= */

.artemis-taller-wrapper {
	max-width: 720px;
	margin: 56px auto 0;
	padding: 0 24px;
}

.artemis-taller-header {
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e2e8f0;
}

.artemis-taller-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--artemis-navy);
	letter-spacing: -0.02em;
	margin: 0 0 8px 0;
	line-height: 1.25;
}

.artemis-taller-header p {
	color: var(--artemis-text);
	font-size: 0.9375rem;
	margin: 0;
	line-height: 1.5;
	max-width: 52ch;
}

.artemis-taller-form,
.artemis-taller-form--cf7 {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	max-width: none;
}

.artemis-taller-form--cf7 .wpcf7-form.artemis-taller-cf7-form {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
}

.artemis-taller-cf7-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
}

.artemis-taller-cf7-grid > p {
	margin: 0;
}

.artemis-taller-cf7-footer {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

.artemis-taller-cf7-footer > p {
	margin: 0;
	width: 100%;
}

.artemis-taller-cf7-footer > p:last-child {
	margin-top: 4px;
}

.artemis-taller-cf7-footer > p:last-child label {
	display: none;
}

.artemis-taller-cf7-form input[type="submit"],
.artemis-taller-cf7-form .wpcf7-submit {
	display: block;
	width: 100%;
	max-width: 100%;
}

.artemis-taller-form label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--artemis-navy);
	margin-bottom: 8px;
	line-height: 1.35;
}

.artemis-taller-form .wpcf7-form-control-wrap {
	display: block;
}

.artemis-taller-form .wpcf7-form-control,
.artemis-taller-form input[type="text"],
.artemis-taller-form input[type="email"],
.artemis-taller-form input[type="tel"],
.artemis-taller-form input[type="date"],
.artemis-taller-form select,
.artemis-taller-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--artemis-text-dark);
	background: var(--artemis-white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.artemis-taller-form .wpcf7-form-control:focus,
.artemis-taller-form input:focus,
.artemis-taller-form select:focus,
.artemis-taller-form textarea:focus {
	outline: none;
	border-color: var(--artemis-navy);
	box-shadow: 0 0 0 3px rgba(0, 30, 64, 0.08);
}

.artemis-taller-form textarea {
	min-height: 112px;
	resize: vertical;
}

.artemis-taller-form select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23001e40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
}

.artemis-taller-form .wpcf7-submit,
.artemis-taller-form input[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 14px 28px;
	margin: 4px 0 0;
	background: linear-gradient(135deg, var(--artemis-navy) 0%, var(--artemis-navy-light) 100%);
	color: var(--artemis-white);
	border: none;
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.artemis-taller-form .wpcf7-submit:hover,
.artemis-taller-form input[type="submit"]:hover {
	box-shadow: 0 8px 24px rgba(0, 30, 64, 0.22);
}

.artemis-taller-form .wpcf7-not-valid-tip {
	font-size: 0.75rem;
	color: #dc2626;
	margin-top: 6px;
}

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

.artemis-taller-form--cf7 .wpcf7-response-output,
.artemis-taller-form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 16px 18px;
	border-radius: 10px;
	font-size: 0.9375rem;
	line-height: 1.55;
	text-align: center;
	border-width: 1px;
	white-space: pre-line;
}

.artemis-taller-form .wpcf7-response-output.wpcf7-mail-sent-ok {
	background: #ecfdf5;
	color: #065f46;
	border-color: #a7f3d0;
}

.artemis-taller-form .wpcf7-response-output.wpcf7-validation-errors,
.artemis-taller-form .wpcf7-response-output.wpcf7-spam-blocked {
	background: #fef2f2;
	color: #991b1b;
	border-color: #fecaca;
}

@media (max-width: 640px) {
	.artemis-taller-wrapper {
		margin-top: 40px;
		padding: 0 16px;
	}

	.artemis-taller-cf7-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.artemis-taller-header h3 {
		font-size: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.artemis-taller-form .wpcf7-submit,
	.artemis-taller-form input[type="submit"] {
		transition: none;
	}
}


@media (max-width: 480px) {
	.artemis-services-grid {
		grid-template-columns: 1fr;
	}

	.artemis-service-card-image {
		height: 160px;
	}
}

.artemis-taller-wizard {
	width: 100%;
}

.artemis-taller-wizard-message {
	text-align: center;
	color: var(--artemis-navy);
	font-weight: 700;
	margin: 20px 0 0;
}

.artemis-taller-wizard-message--error {
	color: #dc2626;
}

.artemis-taller-progress-dots {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 24px;
}

.artemis-taller-progress-dot {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: rgba(0, 30, 64, 0.15);
	transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
	box-shadow: none;
}

.artemis-taller-progress-dot.is-active {
	background: linear-gradient(135deg, var(--artemis-navy), var(--artemis-navy-light));
	transform: scale(1.25);
	box-shadow: 0 10px 30px rgba(0, 30, 64, 0.18);
}

.artemis-taller-step {
	opacity: 0;
	transform: translateY(10px);
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
}

.artemis-taller-step.is-active {
	opacity: 1;
	transform: translateY(0);
	max-height: 800px;
	overflow: visible;
}

.artemis-taller-step-label {
	display: block;
	margin-bottom: 12px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--artemis-text-dark);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.artemis-taller-nav {
	display: flex;
	gap: 14px;
	margin-top: 22px;
}

.artemis-taller-nav > * {
	flex: 1;
}

.artemis-taller-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 16px 20px;
	background: linear-gradient(135deg, var(--artemis-navy), var(--artemis-navy-light));
	color: var(--artemis-white);
	border: none;
	border-radius: 10px;
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.artemis-taller-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 30, 64, 0.35);
}

.artemis-taller-btn:active {
	transform: translateY(-1px);
}

.artemis-taller-error {
	margin-top: 8px;
	font-size: 0.8rem;
	color: #dc2626;
}

.artemis-taller-error[hidden] {
	display: none;
}

.artemis-taller-radio-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 6px;
}

.artemis-taller-form .artemis-taller-radio-option {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 14px 14px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 700;
	color: var(--artemis-text-dark);
	margin: 0;
}

.artemis-taller-form .artemis-taller-radio-option input {
	margin: 0;
	accent-color: var(--artemis-navy);
	width: auto;
}

.artemis-taller-form .artemis-taller-radio-option span {
	font-size: 0.95rem;
}

@media (max-width: 600px) {
	.artemis-taller-progress-dots {
		gap: 10px;
		margin-bottom: 20px;
	}

	.artemis-taller-progress-dot {
		width: 10px;
		height: 10px;
	}

	.artemis-taller-nav {
		gap: 12px;
	}

	.artemis-taller-radio-group {
		grid-template-columns: 1fr;
	}

	.artemis-taller-btn {
		letter-spacing: 0.08em;
	}
}
