:root {
	--light-color: #ffffff;
	--shadow-color: rgba(0, 0, 0, 0.1);
	--gradient-primary: linear-gradient(135deg, #f14c1c 0%, #ff7f50 100%);
}

.ss-packages-container {
	margin: 60px 0;
}

.ss-packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.ss-package-card {
	background: var(--light-color);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 30px var(--shadow-color);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ss-package-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 50px rgba(74, 109, 229, 0.2);
}

.ss-package-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	/* background: var(--gradient-primary); */
}



.ss-card-header {
	padding: 30px 25px 20px;
	text-align: center;
	position: relative;
}






.ss-card-title {
	font-weight: 700;
	margin-bottom: 10px;
}

.ss-card-subtitle {
	color: #6c757d;
	font-size: 1rem;
	line-height: 1.5;
}

.ss-card-body {
	padding: 0 25px;
	flex-grow: 1;
}

.ss-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ss-features-list li {
	padding: 15px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	transition: all 0.2s ease;
}

.ss-features-list li:hover {
	transform: translateX(5px);
	color: var(--primary-color);
}

.ss-features-list li:last-child {
	border-bottom: none;
}

.ss-feature-icon {
	width: 24px;
	height: 24px;
	background: rgba(74, 109, 229, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: var(--primary-color);
}



.ss-feature-text {
	flex: 1;
}

.ss-card-footer {
	padding: 25px;
	text-align: center;
	background-color: #f8fafc;
	border-top: 1px solid #eee;
}

.ss-price {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.ss-price-currency {
	font-size: 1.5rem;
	font-weight: 600;
}

.ss-price-period {
	font-size: 1rem;
	color: #6c757d;
	font-weight: 500;
}



.ss-btn-select:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(74, 109, 229, 0.4);
	color: white;
}

.ss-btn-select {
	display: inline-block;
	padding: 15px 40px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	box-shadow: 0 5px 15px rgba(74, 109, 229, 0.3);
	margin-top: 15px;
	width: 100%;
	max-width: 250px;
}



.ss-footer-note {
	text-align: center;
	color: #6c757d;
	font-size: 1rem;
	padding-top: 30px;
	border-top: 1px solid #eee;
	margin-top: 30px;
}

.ss-footer-note i {
	margin: 0 5px;
}

.ss-highlight-feature {
	font-weight: 600;
	color: var(--primary-color);
}




/* Responsive tasarım */
@media (max-width: 992px) {
	.ss-packages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ss-packages-grid {
		grid-template-columns: 1fr;
	}
}

/* Animasyonlar */
@keyframes ss-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ss-package-card {
	animation: ss-fadeInUp 0.5s ease forwards;
	opacity: 0;
}

.ss-package-card:nth-child(2) {
	animation-delay: 0.2s;
}

.ss-package-card:nth-child(3) {
	animation-delay: 0.4s;
}

