/* Enhanced Tails Kitchen Registration Form Styles */
.tails-kitchen-form-container {
	max-width: 1000px;
	margin: 40px auto;
	padding: 0;
	background-color: white !important;
	border-radius: 16px;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

/* Header Section */
.form-header {
/* 	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	padding: 40px 30px;
	text-align: center;
	color: white;
}

.tails-kitchen-form-container h2 {
	margin: 0 0 10px 0;
	font-size: 2.2em;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tails-kitchen-form-container .tagline {
	margin: 0;
	font-size: 1.1em;
	font-style: italic;
	opacity: 0.9;
}

/* Form Content */
.form-content {
	padding: 40px;
}

/* Step Navigation */
.step-indicator {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	padding: 0 20px;
}

.step-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e0e0e0;
	margin: 0 8px;
	transition: all 0.3s ease;
}

.step-dot.active {
	background: #667eea;
	transform: scale(1.2);
}

.step-dot.completed {
	background: #4caf50;
}

/* Form Steps */
.form-step {
	display: none;
	animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-step h3 {
	color: #333;
	font-size: 1.8em;
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 3px solid #667eea;
	display: inline-block;
}

/* Form Groups */
.form-group {
	margin-bottom: 25px;
}

.form-row {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.form-row .form-group {
	flex: 1;
	margin-bottom: 0;
}

/* Labels */
.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #444;
	font-size: 14px;
}

.label-with-icon {
	display: flex;
	align-items: center;
	gap: 8px;
}

.label-icon {
	font-size: 16px;
	color: #667eea;
}

/* Input Fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s ease;
	background: #fafbfc;
	box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: #667eea;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 10px;
}

.radio-option,
.checkbox-option {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	background: #f8f9fa;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 120px;
}

.radio-option:hover,
.checkbox-option:hover {
	background: #e3f2fd;
	border-color: #667eea;
}

.radio-option.selected,
.checkbox-option.selected {
	background: #667eea;
	border-color: #667eea;
	color: white;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
	margin-right: 8px;
	margin-left: 0;
}

/* Age Input Group */
.age-group {
	display: flex;
	gap: 15px;
}

.age-group input {
	flex: 1;
}

/* Other Input Fields */
.other-input {
	margin-top: 15px;
	width: 100%;
	display: none;
}

/* Form Navigation */
.form-navigation {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e1e5e9;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.form-navigation button {
	padding: 14px 28px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.next-step,
button[type="submit"] {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.next-step:hover,
button[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.prev-step {
	background: #f8f9fa;
	color: #666;
	border: 2px solid #e1e5e9;
}

.prev-step:hover {
	background: #e9ecef;
	border-color: #adb5bd;
}

/* Form Message */
.form-message {
	margin-top: 20px;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	font-weight: 600;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Required Field Indicator */
.required {
	color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
	.tails-kitchen-form-container {
		margin: 20px;
		border-radius: 12px;
	}

	.form-content {
		padding: 30px 20px;
	}

	.form-header {
		padding: 30px 20px;
	}

	.tails-kitchen-form-container h2 {
		font-size: 1.8em;
	}

	.form-row {
		flex-direction: column;
		gap: 0;
	}

	.form-row .form-group {
		margin-bottom: 25px;
	}

	.radio-group,
	.checkbox-group {
		flex-direction: column;
		gap: 10px;
	}

	.radio-option,
	.checkbox-option {
		min-width: auto;
	}

	.age-group {
		flex-direction: column;
		gap: 15px;
	}

	.form-navigation {
		flex-direction: column;
		gap: 15px;
	}

	.form-navigation button {
		width: 100%;
	}
}

/* Loading State */
.form-loading {
	position: relative;
	overflow: hidden;
}

.form-loading::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(102, 126, 234, 0.1),
		transparent
	);
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

/* Validation Styles */
.form-group input.error,
.form-group textarea.error {
	border-color: #e74c3c;
	background-color: #fdf2f2;
}

.form-group input.success,
.form-group textarea.success {
	border-color: #27ae60;
	background-color: #f2fdf2;
}

/* Icon Styles */
.icon-phone::before {
	content: "📞";
}
.icon-whatsapp::before {
	content: "💬";
}
.icon-email::before {
	content: "📧";
}
.icon-user::before {
	content: "👤";
}
.icon-pet::before {
	content: "🐕";
}
.icon-home::before {
	content: "🏠";
}
.icon-location::before {
	content: "📍";
}
.icon-heart::before {
	content: "❤️";
}
.icon-calendar::before {
	content: "📅";
}
.icon-weight::before {
	content: "⚖️";
}
.icon-activity::before {
	content: "🏃";
}
.icon-food::before {
	content: "🍽️";
}
.icon-clock::before {
	content: "🕒";
}
.icon-plan::before {
	content: "📋";
}
.icon-delivery::before {
	content: "🚚";
}
.icon-info::before {
	content: "ℹ️";
}
