	/* ===========================
	MODULE BASE
	=========================== */

	.pricing-wrapper {
	width: 100%;
	margin:0 auto;
	text-align: center;
	}
	
	.pricing-module {
	padding: 0 20px;
	background: #ffffff;
	font-family: "Oswald", sans-serif;
	width:100%;
	max-width:1250px;
	}

	/* ===========================
	CONTROLS
	=========================== */

	.module-controls {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	margin-bottom: 40px;
	}

	.toggle-label {
	font-weight: 600;
	font-size: 25px;
	color: #1a1a1a;
	}

	.toggle-wrapper {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 10px 18px;
	background: #ffffff;
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	}

	/* Switch */
	.switch {
	position: relative;
	width: 55px;
	height: 28px;
	bottom:0;
	left:5px;
	}
	.switch input {
	display: none;
	}

	.slider {
	position: absolute;
	cursor: pointer;
	background-color: #ccc;
	border-radius: 34px;
	top: 0; left: 0; right: 0; bottom: 0;
	transition: .4s;
	}
	.slider:before {
	content: "";
	position: absolute;
	height: 22px;
	width: 22px;
	left: 3px;
	bottom: 3px;
	background: white;
	border-radius: 50%;
	transition: .4s;
	}
	input:checked + .slider {
	background: linear-gradient(135deg, #0078ff, #7ac1f4);
	}
	input:checked + .slider:before {
	transform: translateX(26px);
	}

	/* Size Buttons */
	.size-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin-bottom: 30px;
	}

	.size-btn {
	padding: 12px 24px;
	border-radius: 10px;
	border: none;
	background: linear-gradient(135deg, #ececec, #ffffff);
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	cursor: pointer;
	font-weight: 300;
	font-size:16px;
	transition: all .3s ease;
	}

	.size-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	}

	.size-btn.active {
	background: linear-gradient(135deg, #008ae8, #008ae8);
	color: white;
	box-shadow: 0 4px 14px rgba(0,120,255,0.4);
	}

	/* ===========================
	GRID + CARDS
	=========================== */
	.pricing-grid {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	/* --- Enhanced Card Styling --- */
	.pricing-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 0; /* inner wrapper handles spacing */
	margin: 22px 0;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	transition: transform .35s ease, box-shadow .35s ease;
	position: relative;
	overflow: hidden;

	/* Fade-up animation */
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp .7s ease forwards;
	}

	.pricing-card:nth-child(1) { animation-delay: .1s; }
	.pricing-card:nth-child(2) { animation-delay: .25s; }
	.pricing-card:nth-child(3) { animation-delay: .4s; }

	@keyframes fadeUp {
	to {
	opacity: 1;
	transform: translateY(0);
	}
	}

	/* Inner wrapper prevents content shifting */
	.card-inner {
	padding: 28px;
	position: relative;
	z-index: 2;
	transition: transform .35s ease;
	}

	.pricing-card:hover .card-inner {
	transform: translateY(0);
	}

	/* Hover Effects */
	.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 14px 32px rgba(0,0,0,0.15);
	}

	.pricing-card.featured {
	border: 2px solid #008ae8;
	box-shadow: 0 12px 28px rgba(0,0,0,0.12);
	transform: scale(1.03);
	}

	/* Car image hover zoom */
	.car-image {
	text-align: center;
	margin-bottom: 10px;
	}

	.car-img {
	width: 110px;
	transition: transform .35s ease, opacity .35s ease;
	}

	.pricing-card:hover .car-img {
	transform: scale(1.06);
	transition: all .4s ease;
	}

	/* ===========================
	TITLES + PRICE
	=========================== */
	.title-standard,
	.title-premium {
	text-align: center;
	font-size: 32px;
	margin-bottom: 12px;
	font-weight: 500;
	text-transform: uppercase;
	}

	.price {
	font-size: 60px;
	font-weight: 500;
	text-align: center;
	margin: 10px 0 12px;
	color: #008ae8;
	transition: all .4s ease;
	}

	/* ===========================
	INCULDED
	=========================== */
	.title-stan,
	.title-pre {
	text-align: center;
	font-size: 24px;
	margin-bottom: 12px;
	font-weight: 500;
	color:#008ae8;
	text-transform: uppercase;
	}

	/* ===========================
	SERVICES
	=========================== */
	.services {
	list-style: none;
	padding: 0;
	margin: 0;
	}

	.services li {
	padding: 8px 5px;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid #eee;
	}

	.services li:last-child {
	border-bottom: none;
	}
	.services  li:hover {
	transform: translateX(-10px);
	transition: transform 0.5s ease;
	}

	.check {
	color: #008ae8;
	font-weight: bold;
	}

	/* Hide class */
	.hidden {
	display: none !important;
	}

	/* ===========================
	BOOK NOW BUTTON
	=========================== */
	.book-btn {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 22px;
	padding: 14px 0;
	background: linear-gradient(135deg, #008ae8, #008ae8);
	color: #fff;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	font-size: 20px;
	letter-spacing:3px;
	box-shadow: 0 4px 12px rgba(0,120,255,0.35);
	transition: all .35s ease;
	}

	.book-btn:hover {
	color:#ffffff;
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(0,120,255,0.45);
	background: linear-gradient(135deg,#3d72a4, #006fe0);
	}

	.book-btn:active {
	transform: scale(.97);
	}

	/* ===========================
	IMAGE ANIMATIONS
	=========================== */
	.car-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
	transition: opacity 0.5s ease;
	}

	.car-img.fade-out {
	opacity: 0;
	transform: scale(.85);
	}

	.car-img.slide-out {
	opacity: 0;
	transform: translateX(-25px);
	}

	.car-img.slide-in {
	opacity: 1;
	transform: translateX(0);
	}
	
	/* Add-ons */
	
	.container-add {
	max-width: 1180px;
	margin: 10px auto;
	padding: 10px;
	}

	.two-col {
	display: grid;
	grid-template-columns: 0.5fr 1.1fr;
	gap: 1rem;
	align-items: start;
	}

	/* Left column width control */
	.left {
	max-width: 300px;
	}

	/* Responsive behavior */
	@media (max-width: 768px) {
	.two-col {
	grid-template-columns: 1fr; /* stack vertically */
	}
	.left {
	max-width: 100%; /* allow full width on small screens */
	}
	}

	/* List */
	.checklist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.2rem 2rem;
	padding: 0;
	margin: 0;
	}

	.checklist li,
	.checklist li .item,
	.checklist li .price {
	color: #ffffff;
	}

	.checklist li {
	list-style: none;

	/* Increased height + perfect vertical alignment */
	min-height: 48px; /* adjust this number to make boxes taller */
	padding: 6px 14px 6px 36px;
	display: flex;
	align-items: center; /* vertical centering */
	justify-content: space-between;

	position: relative;
	font-size: 18px;

	/* --- ULTIMATE FOAMY CARD STYLE --- */

	/* Gradient base */
	background: linear-gradient(
	135deg,
	rgba(0, 138, 232) 0%,
	rgba(0, 138, 232) 100%
	);

	/* Glass overlay */
	backdrop-filter: blur(10px) saturate(140%);
	-webkit-backdrop-filter: blur(10px) saturate(140%);

	/* Border-light frame */
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 8px;

	/* Glow + depth */
	box-shadow:
	0 0 6px rgba(61,114,164,0.45),
	inset 0 0 6px rgba(255,255,255,0.12),
	0 4px 6px rgba(0,0,0,0.25);

	transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease;
	}

	.checklist li:hover {
	transform: translateX(-6px);
	border-color: rgba(255,255,255,0.45);

	}

	.checklist li::before {
	content: "";
	background-image: url('check2.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	}

	.item, .pricadd {
	color: white;
	}
	.priceadd {
	font-weight: 600;
	text-align: right;
	}
