/* =====================================================
   DISTRIBUTOR FORM BLOCK
   ===================================================== */

.distributor-form-wrapper {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 20px;
	text-align: center;
}

/* ─── Section heading ─── */
.distributor-form__heading {
	font-size: 36px;
	font-weight: 700;
	color: #24317c;
	margin: 0 0 40px;
	line-height: 1.2;
}

/* ─── Steps ─── */
.distributor-form__steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 16px;
	margin-bottom: 40px;
}

.distributor-form__step {
	flex: 1;
	max-width: 240px;
	text-align: center;
}

.distributor-form__step-icon {
	margin-bottom: 12px;
}

.distributor-form__step-icon img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.distributor-form__step-title {
	font-size: 18px;
	font-weight: 700;
	color: #24317c;
	margin: 0 0 8px;
}

.distributor-form__step-text {
	font-size: 14px;
	color: #555;
	line-height: 1.5;
	margin: 0;
}

.distributor-form__step-arrow {
	display: flex;
	align-items: center;
	padding-top: 30px;
}

.distributor-form__step-arrow svg {
	width: 24px;
	height: 24px;
}

/* ─── Illustration ─── */
.distributor-form__illustration {
	margin-bottom: 40px;
}

.distributor-form__illustration img {
	max-width: 400px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* ─── Form section ─── */
.distributor-form__form-section {
	text-align: center;
}

.distributor-form__form-heading {
	font-size: 32px;
	font-weight: 700;
	color: #24317c;
	margin: 0 0 16px;
}

.distributor-form__form-text {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	max-width: 620px;
	margin: 0 auto 32px;
}

.distributor-form__form-text a {
	color: #1a6fe8;
	font-weight: 600;
	text-decoration: none;
}

.distributor-form__form-text a:hover {
	text-decoration: underline;
}

/* ─── CF7 Form styles ─── */
.distributor-form__form {
	text-align: left;
}

.distributor-form__form .form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.distributor-form__form .form-col {
	flex: 1;
}

.distributor-form__form .form-col.full-width {
	flex: 0 0 100%;
}

.distributor-form__form .form-col label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
	color: #24317c;
}

.distributor-form__form .form-col .required {
	color: #e00;
}

.distributor-form__form .form-col .optional {
	color: #777;
	font-weight: normal;
}

.distributor-form__form .wpcf7 input[type="text"],
.distributor-form__form .wpcf7 input[type="email"],
.distributor-form__form .wpcf7 input[type="tel"],
.distributor-form__form .wpcf7 input[type="url"],
.distributor-form__form .wpcf7 select,
.distributor-form__form .wpcf7 textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 12px 14px;
	font-size: 15px;
	color: #333;
	background: #fff;
	box-sizing: border-box;
}

.distributor-form__form .wpcf7 textarea {
	height: 120px;
	resize: vertical;
}

.distributor-form__form .wpcf7 input[type="submit"] {
	display: block;
	margin: 24px auto 0;
	background: #5CC9F5;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 14px 48px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.25s ease;
}

.distributor-form__form .wpcf7 input[type="submit"]:hover {
	background: #24317C;
}

.distributor-form__form .wpcf7-form br {
	display: none;
}

.distributor-form__form .wpcf7-acceptance {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	text-align: left;
	margin-top: 8px;
}

.distributor-form__form .wpcf7-acceptance input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin-top: 2px;
	accent-color: #24317c;
	cursor: pointer;
}

.distributor-form__form .wpcf7-acceptance .wpcf7-list-item-label {
	font-size: 13px;
	color: #555;
	line-height: 1.5;
}

.distributor-form__form .wpcf7-acceptance .wpcf7-list-item-label a {
	color: #5CC9F5;
	text-decoration: underline;
}

.distributor-form__form .wpcf7-acceptance .wpcf7-list-item-label a:hover {
	color: #24317c;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
	.distributor-form-wrapper {
		padding: 40px 16px;
	}

	.distributor-form__heading {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.distributor-form__steps {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.distributor-form__step {
		max-width: 100%;
	}

	.distributor-form__step-arrow {
		transform: rotate(90deg);
		padding-top: 0;
	}

	.distributor-form__form-heading {
		font-size: 26px;
	}
}

@media (max-width: 600px) {
	.distributor-form__form .form-row {
		flex-direction: column;
	}
}
