.efegarage-randevu-form {
	max-width: 480px;
	margin: 0 auto;
}

.efegarage-randevu-form__title {
	margin-bottom: 1.25rem;
	font-size: 1.5rem;
	font-weight: 600;
}

.efegarage-randevu-form__field {
	margin-bottom: 1rem;
}

.efegarage-randevu-form__field label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 500;
}

.efegarage-randevu-form__field input,
.efegarage-randevu-form__field select,
.efegarage-randevu-form__field textarea {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid #d8e3ef;
	border-radius: 4px;
	font: inherit;
}

.efegarage-randevu-form__consent {
	margin: 0.25rem 0 1rem;
	font-size: 0.9rem;
	color: #5c6b7a;
}

.efegarage-randevu-form__consent label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: 400;
}

.efegarage-randevu-form__consent input {
	width: auto;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.efegarage-randevu-form__submit {
	display: inline-block;
	width: 100%;
	padding: 0.75rem 1rem;
	border: 0;
	border-radius: 999px !important;
	background: #0058a3;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.efegarage-randevu-form__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.efegarage-randevu-form__feedback {
	margin-top: 1rem;
	padding: 0.75rem;
	border-radius: 6px;
}

.efegarage-randevu-form__feedback.is-success {
	background: #ecfdf5;
	color: #065f46;
}

.efegarage-randevu-form__feedback.is-error {
	background: #fef2f2;
	color: #991b1b;
}

/* ==================================================================
   Five-step appointment wizard (Randevu Al page)
   ================================================================== */

:root {
	--rdv-blue: #0057b7;
	--rdv-navy: #0b1d3a;
	--rdv-navy-2: #10294f;
	--rdv-border: #dbe5f0;
	--rdv-muted: #5c6b7a;
}

body:has(.efegarage-rdv) {
	overflow-x: clip;
}

.efegarage-rdv svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* --- Hero band (full-bleed) — padding/hizalama zf-home.css ortak kurallarında --- */
.efegarage-rdv-hero {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	color: #ffffff;
}

.efegarage-rdv-hero-inner {
	max-width: var(--efegarage-page-hero-max, 1440px);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.efegarage-rdv-hero h1 {
	margin: 0 0 var(--efegarage-page-hero-title-gap, 0.8rem);
}

.efegarage-rdv-hero > .efegarage-rdv-hero-inner > p {
	margin: 0 0 var(--efegarage-page-hero-text-gap, 1.5rem);
}

/* --- Step indicator --- */
.efegarage-rdv-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	gap: 0;
	max-width: 900px;
}

.efegarage-rdv-steps li {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.85rem;
}

.efegarage-rdv-steps li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 22px;
	left: 56px;
	right: 12px;
	height: 2px;
	background: rgba(255, 255, 255, 0.22);
}

.efegarage-rdv-step-dot {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
	font-weight: 700;
	font-size: 1.1rem;
	color: #dce8f7;
	transition: background 0.2s ease;
}

.efegarage-rdv-step-check {
	display: none;
}

.efegarage-rdv-steps li.is-active .efegarage-rdv-step-dot {
	background: var(--rdv-blue);
	box-shadow: 0 0 0 4px rgba(0, 87, 183, 0.35);
	color: #ffffff;
}

.efegarage-rdv-steps li.is-done .efegarage-rdv-step-dot {
	background: rgba(0, 87, 183, 0.55);
	color: #ffffff;
}

.efegarage-rdv-steps li.is-done .efegarage-rdv-step-num {
	display: none;
}

.efegarage-rdv-steps li.is-done .efegarage-rdv-step-check {
	display: inline-flex;
}

.efegarage-rdv-step-check svg {
	width: 20px;
	height: 20px;
}

.efegarage-rdv-step-label {
	font-size: 0.92rem;
	font-weight: 600;
	color: #e6eefa;
	line-height: 1.25;
	padding-bottom: 0.25rem;
}

/* --- Body: form card + summary --- */
.efegarage-rdv-body {
	position: relative;
	max-width: 1440px;
	margin: -1.75rem auto 0;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 2rem;
	align-items: start;
	z-index: 2;
}

.efegarage-rdv-form {
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(11, 29, 58, 0.14);
	padding: 2.25rem 2.5rem;
}

.efegarage-rdv-panel {
	display: none;
}

.efegarage-rdv-panel.is-active {
	display: block;
}

.efegarage-rdv-panel h2 {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--rdv-navy);
	margin: 0 0 0.35rem;
}

.efegarage-rdv-panel-sub {
	color: var(--rdv-muted);
	font-size: 0.95rem;
	margin: 0 0 1.75rem;
}

/* --- Fields --- */
.efegarage-rdv-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.efegarage-rdv-field {
	display: block;
	margin-bottom: 1.25rem;
}

.efegarage-rdv-field-label {
	display: block;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--rdv-navy);
	margin-bottom: 0.45rem;
}

.efegarage-rdv-field-box {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	border: 1px solid var(--rdv-border);
	border-radius: 10px;
	padding: 0.8rem 1rem;
	background: #ffffff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.efegarage-rdv-field-box:focus-within {
	border-color: var(--rdv-blue);
	box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.12);
}

.efegarage-rdv-field-box svg {
	color: #93a5ba;
}

.efegarage-rdv-field-box input,
.efegarage-rdv-field-box select,
.efegarage-rdv-field-box textarea {
	flex: 1;
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	background: transparent !important;
	font: inherit;
	color: var(--rdv-navy);
	min-width: 0;
}

.efegarage-rdv-field-box--area {
	align-items: flex-start;
}

.efegarage-rdv-field-box textarea {
	resize: vertical;
	min-height: 90px;
}

/* --- Service cards --- */
.efegarage-rdv-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.1rem;
}

.efegarage-rdv-service input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.efegarage-rdv-service-card {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	border: 1.5px solid var(--rdv-border);
	border-radius: 14px;
	padding: 1.25rem;
	cursor: pointer;
	height: 100%;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.efegarage-rdv-service input:checked + .efegarage-rdv-service-card {
	border-color: var(--rdv-blue);
	box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.14);
	background: #f4f9ff;
}

.efegarage-rdv-service-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: #e8f2fc;
	margin-bottom: 0.3rem;
}

.efegarage-rdv-service-ico svg {
	width: 24px;
	height: 24px;
	color: var(--rdv-blue);
}

.efegarage-rdv-service-name {
	font-weight: 700;
	color: var(--rdv-navy);
	font-size: 1.05rem;
}

.efegarage-rdv-service-desc {
	font-size: 0.85rem;
	color: var(--rdv-muted);
	line-height: 1.45;
}

.efegarage-rdv-service-sure {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--rdv-blue);
}

.efegarage-rdv-service-sure svg {
	width: 15px;
	height: 15px;
}

.efegarage-rdv-hours-hint {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0.5rem 0 0;
	font-size: 0.88rem;
	color: var(--rdv-muted);
}

/* --- Confirmation recap + consent --- */
.efegarage-rdv-confirm {
	border: 1px solid var(--rdv-border);
	border-radius: 12px;
	padding: 0.5rem 1.25rem;
	margin-bottom: 1.5rem;
}

.efegarage-rdv-confirm > div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 0;
	font-size: 0.95rem;
}

.efegarage-rdv-confirm > div + div {
	border-top: 1px dashed var(--rdv-border);
}

.efegarage-rdv-confirm span {
	color: var(--rdv-muted);
}

.efegarage-rdv-confirm strong {
	color: var(--rdv-navy);
	text-align: right;
}

.efegarage-rdv-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--rdv-muted);
	cursor: pointer;
}

.efegarage-rdv-consent input {
	margin-top: 0.2rem;
}

/* --- Nav buttons --- */
.efegarage-rdv-nav {
	display: flex;
	justify-content: flex-end;
	gap: 0.9rem;
	margin-top: 1.75rem;
}

.efegarage-rdv-prev,
.efegarage-rdv-next,
.efegarage-rdv-submit {
	border: 0;
	border-radius: 10px;
	padding: 0.85rem 1.8rem;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}

.efegarage-rdv-prev {
	background: #eef3f9;
	color: var(--rdv-navy);
	margin-right: auto;
}

.efegarage-rdv-prev:hover {
	background: #e2eaf4;
}

.efegarage-rdv-next,
.efegarage-rdv-submit {
	background: var(--rdv-blue);
	color: #ffffff;
}

.efegarage-rdv-next:hover,
.efegarage-rdv-submit:hover {
	background: #004a9e;
}

.efegarage-rdv-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* --- Summary sidebar --- */
.efegarage-rdv-summary {
	background: #f6f9fd;
	border: 1px solid #e3ecf6;
	border-radius: 18px;
	padding: 1.75rem;
	position: sticky;
	top: 100px;
}

.efegarage-rdv-summary h3 {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--rdv-navy);
	margin: 0 0 1.25rem;
}

.efegarage-rdv-summary-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #e8f2fc;
}

.efegarage-rdv-summary-ico svg {
	color: var(--rdv-blue);
	width: 20px;
	height: 20px;
}

.efegarage-rdv-summary ul {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

.efegarage-rdv-summary li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.5rem 0;
	font-size: 0.92rem;
}

.efegarage-rdv-summary li span {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--rdv-muted);
	flex-shrink: 0;
}

.efegarage-rdv-summary li span svg {
	width: 16px;
	height: 16px;
	color: #7f95ad;
}

.efegarage-rdv-summary li strong {
	color: var(--rdv-navy);
	text-align: right;
	overflow-wrap: anywhere;
}

.efegarage-rdv-summary-sep {
	border-bottom: 1px solid #e3ecf6;
	margin-bottom: 0.5rem;
	padding-bottom: 1rem !important;
}

.efegarage-rdv-note {
	display: flex;
	gap: 0.7rem;
	background: #e8f2fc;
	border-radius: 12px;
	padding: 1rem;
	font-size: 0.88rem;
	color: #1a4a7d;
	line-height: 1.5;
}

.efegarage-rdv-note-ico svg {
	color: var(--rdv-blue);
	width: 20px;
	height: 20px;
}

/* --- Feature strip --- */
.efegarage-rdv-features {
	list-style: none;
	max-width: 1440px;
	margin: 3rem auto 1rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.efegarage-rdv-features li {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.efegarage-rdv-feature-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1.5px solid var(--rdv-navy);
	flex-shrink: 0;
}

.efegarage-rdv-feature-ico svg {
	width: 24px;
	height: 24px;
	color: var(--rdv-navy);
}

.efegarage-rdv-features li > span:last-child {
	display: flex;
	flex-direction: column;
	font-size: 0.88rem;
	color: var(--rdv-muted);
	line-height: 1.4;
}

.efegarage-rdv-features li strong {
	color: var(--rdv-navy);
	font-size: 0.95rem;
}

/* --- Success state --- */
.efegarage-rdv-success {
	max-width: 640px;
	margin: -3rem auto 2rem;
	position: relative;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(11, 29, 58, 0.14);
	padding: 3rem 2rem;
	text-align: center;
}

.efegarage-rdv-success-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: #e7f8ef;
	margin-bottom: 1.25rem;
}

.efegarage-rdv-success-ico svg {
	width: 36px;
	height: 36px;
	color: #14884a;
}

.efegarage-rdv-success h2 {
	color: var(--rdv-navy);
	margin: 0 0 0.5rem;
}

.efegarage-rdv-success p {
	color: var(--rdv-muted);
	margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
	.efegarage-rdv-body {
		grid-template-columns: 1fr;
	}

	.efegarage-rdv-summary {
		position: static;
		order: 2;
	}
}

@media (max-width: 768px) {
	.efegarage-rdv-hero {
		padding: 2.5rem 1.25rem 4.5rem;
	}

	.efegarage-rdv-body {
		margin-top: -1rem;
		padding: 0 18px;
	}

	.efegarage-rdv-steps {
		flex-wrap: wrap;
		row-gap: 1.25rem;
	}

	.efegarage-rdv-steps li {
		flex: 1 1 30%;
	}

	.efegarage-rdv-steps li:not(:last-child)::after {
		display: none;
	}

	.efegarage-rdv-form {
		padding: 1.5rem 1.25rem;
	}

	.efegarage-rdv-grid-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.efegarage-rdv-services {
		grid-template-columns: 1fr;
	}

	.efegarage-rdv-features {
		grid-template-columns: 1fr 1fr;
		padding: 0 1.25rem;
	}
}

@media (max-width: 480px) {
	.efegarage-rdv-features {
		grid-template-columns: 1fr;
	}

	.efegarage-rdv-step-label {
		font-size: 0.8rem;
	}
}
