.order-container {
	padding: 120px 0 60px;
	background-color: #f8f9fa;
	margin-top: 0;
}

.order-heading {
	font-size: 2.5rem;
	color: #012970;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
}

.order-subheading {
	font-size: 1.2rem;
	color: #444;
	text-align: center;
	margin-bottom: 3rem;
}

.pricing-section {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	padding: 30px;
	margin-bottom: 30px;
}

.pricing-card {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.active-plan {
	border: 2px solid #4154f1;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-header {
	background-color: #f8f9fa;
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #e0e0e0;
}

.pricing-header h4 {
	color: #012970;
	font-weight: 700;
	margin-bottom: 15px;
}

.price {
	font-size: 24px;
	font-weight: 700;
	color: #012970;
}

.price-details {
	font-size: 14px;
	color: #444;
	margin-top: 5px;
}

.discount-badge {
	position: absolute;
	top: 15px;
	right: -35px;
	background-color: #4154f1;
	color: white;
	padding: 5px 40px;
	transform: rotate(45deg);
	font-size: 12px;
	font-weight: bold;
	z-index: 1;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-body {
	padding: 20px;
}

.pricing-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-body ul li {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	position: relative;
	padding-left: 25px;
}

.pricing-body ul li:before {
	content: "✓";
	color: #4154f1;
	position: absolute;
	left: 0;
	font-weight: bold;
}

.pricing-footer {
	padding: 20px;
	text-align: center;
}

.plan-select {
	display: block;
	cursor: pointer;
}

.plan-select input {
	display: none;
}

.plan-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #f0f0f0;
	color: #444;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-weight: 600;
	width: 100%;
}

.plan-select input:checked + .plan-btn {
	background-color: #4154f1;
	color: white;
}

.order-form-container {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	padding: 30px;
}

.order-form-container h3 {
	font-size: 1.5rem;
	color: #012970;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.form-label {
	font-weight: 600;
	color: #012970;
}

.form-control {
	height: 50px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	padding: 10px 15px;
	font-size: 1rem;
	margin-bottom: 1rem;
}

textarea.form-control {
	height: auto;
}

.form-control:focus {
	border-color: #4154f1;
	box-shadow: 0 0 0 0.2rem rgba(65, 84, 241, 0.25);
}

.submit-btn {
	background-color: #4154f1;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background-color: #3546d4;
	transform: translateY(-2px);
}

.g-recaptcha {
	margin-bottom: 1.5rem;
}

.sent-message, .error-message {
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.sent-message {
	background-color: #e8f6e8;
	color: #0dc268;
	border: 1px solid #c3e6cb;
}

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

.summary-card {
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 20px;
	border: 1px solid #e0e0e0;
}

.summary-card h5 {
	color: #012970;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #e0e0e0;
}

.summary-item.total {
	font-weight: 700;
	color: #012970;
	font-size: 18px;
	border-bottom: none;
	margin-top: 10px;
}

.form-section-title {
	color: #012970;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
	.pricing-card {
		margin-bottom: 20px;
	}
	
	.order-container {
		padding: 50px 0;
	}
}

/* Step sistemi için CSS kodları */
.step-container {
	display: none;
}

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

.step-progress {
	margin-bottom: 3rem;
}

.step-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

.step-list::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: #e0e0e0;
	transform: translateY(-50%);
	z-index: 1;
}

.step-item {
	position: relative;
	z-index: 2;
	background: #f8f9fa;
	width: 120px;
	text-align: center;
}

.step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #444;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.step-title {
	font-size: 14px;
	color: #444;
	margin: 0;
	transition: all 0.3s ease;
}

.step-item.active .step-number {
	background: #4154f1;
	color: #fff;
}

.step-item.active .step-title {
	color: #4154f1;
	font-weight: 600;
}

.step-item.completed .step-number {
	background: #0dc268;
	color: #fff;
}

.step-buttons {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
}

.step-btn {
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.step-btn.prev {
	background: #f0f0f0;
	color: #444;
}

.step-btn.next {
	background: #4154f1;
	color: #fff;
}

.step-btn:hover {
	transform: translateY(-2px);
}

.step-btn.prev:hover {
	background: #e0e0e0;
}

.step-btn.next:hover {
	background: #3546d4;
}

.step-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
} 