.holiday-wrapper {
	background: #f9fbff;
	font-family: "Poppins", sans-serif;
	color: #333;
	padding: 60px 0;
}

.holiday-heading h1 {
	text-align: center;
	font-size: 2.2rem;
	color: #1aa7ff;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}

.holiday-heading h1::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	margin: 10px auto 0;
	background: linear-gradient(90deg, #1aa7ff, #4cd3ff);
	border-radius: 5px;
}

.holiday-banner img {
	display: block;
	width: 80%;
	margin: 25px auto;
	border-radius: 10px;
	box-shadow: 0 4px 25px rgba(26, 167, 255, 0.15);
}

.holiday-content {
	background: #fff;
	border-radius: 10px;
	padding: 40px 30px;
	box-shadow: 0 8px 30px rgba(26, 167, 255, 0.1);
}

.holiday-subtitle {
	color: #1aa7ff;
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: 20px;
}

.holiday-subheading {
	color: #1aa7ff;
	font-weight: 600;
	margin-top: 30px;
	font-size: 1.3rem;
}

.holiday-text {
	line-height: 1.8;
	color: #444;
	margin-bottom: 15px;
	font-size: 16px;
}

.highlight-text {
	color: #ff4e4e;
	font-weight: 600;
}

.holiday-list {
	margin: 10px 0 20px 25px;
}

.holiday-list li {
	margin-bottom: 8px;
}

.accordion-button {
	background-color: #f1faff;
	color: #1aa7ff;
	font-weight: 600;
	border: none;
	box-shadow: none !important;
	transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
	background-color: #1aa7ff;
	color: #fff;
}

.accordion-button:hover {
	background-color: #1aa7ff;
	color: #fff;
}

.faq-icon {
	margin-left: auto;
	font-weight: 700;
	color: #1aa7ff;
}

.accordion-button:not(.collapsed) .faq-icon {
	color: #fff;
}

/* Button Style */
.holiday-btn {
	display: inline-block;
	padding: 10px 25px;
	background: linear-gradient(90deg, #1aa7ff, #4cd3ff);
	color: #fff;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	box-shadow: 0 4px 12px rgba(26, 167, 255, 0.25);
}

.holiday-btn:hover {
	background: #fff;
	color: #1aa7ff;
	border: 1px solid #1aa7ff;
	box-shadow: 0 5px 15px rgba(26, 167, 255, 0.2);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.holiday-banner img {
		width: 100%;
	}
	.holiday-heading h1 {
		font-size: 1.8rem;
	}
	.holiday-content {
		padding: 25px 15px;
	}
}

/*form some css*/
/* Red glow for unselected cards */
.service-card.error-border {
	/* box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.4); */
	border: 2px dashed rgba(255, 0, 0, 0.4);
	transition: box-shadow 0.3s ease;
}

/* Shake animation for container */
@keyframes shake-error {
	0%,
	100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	50% {
		transform: translateX(5px);
	}
	75% {
		transform: translateX(-5px);
	}
}

.shake-error {
	animation: shake-error 0.4s ease;
}
#home-form {
	width: 50% !important;
}

@media (max-width: 992px) {
	#home-form {
		width: 100% !important;
	}
}

.discount-toast {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #66e41d;
	color: #fff;
	padding: 14px 28px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
	z-index: 9999;
	opacity: 0;
	transition: all 0.4s ease;
}

/* Show animation */
.discount-toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* Variants */
.discount-toast.success {
	animation: toastGlow 2s ease-in-out infinite alternate;
}

@keyframes toastGlow {
	from {
		box-shadow: 0 0 10px rgba(26, 167, 255, 0.6);
	}
	to {
		box-shadow: 0 0 20px rgba(76, 211, 255, 0.9);
	}
}

.discount-toast.warning {
	background: #ffb800;
}
.discount-toast.error {
	background: #ff4e4e;
}
.extras-grid {
	grid-template-columns: repeat(3, 1fr) !important;
}

/* 🧩 Improved Service Card Typography */
.service-card {
	position: relative;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	background: #f9f9f9;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 18px 10px;
	overflow: hidden;
}

/* Service content container */
.service-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}

/* Main heading */
.service-content h4 {
	font-size: 17px !important;
	font-weight: 700;
	color: #1aa7ff;
	margin: 0;
}

/* Description */
.service-content p {
	font-size: 12px !important;
	color: #333;
	margin: 0;
	line-height: 1.3;
}

/* Tick Icon */
.tick-icon {
	position: absolute;
	top: 5px !important;
	right: 5px !important;
	background: #1aa7ff;
	color: #fff;
	font-size: 13px;
	width: 22px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.2s ease;
}

/* Hover & Selected */
.service-card:hover {
	border-color: #1aa7ff;
	background: #eef8ff;
}

.service-card.selected {
	border-color: #1aa7ff;
	background: #e6f4ff;
}

.service-card.selected .tick-icon {
	opacity: 1;
	transform: scale(1);
}

/* Small responsive tweaks */
@media (max-width: 767px) {
	.service-content h4 {
		font-size: 14px;
	}
	.service-content p {
		font-size: 12px;
	}
}

@media (max-width: 992px) {
	.extras-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
    .discount-toast{
        width: 90% !important;
    }
}
