.services-section {
	background: linear-gradient(360deg, #000000 75%, #423711 100%);

}

.services-section .service-title {
	font-size: 3rem;
	color: #D4AF37;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.services-section .service-desc {
	color: #fff;
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto;
}

.service-block {}

.service-block .icon-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	transition: all 0.3s ease;
	position: relative;
}

.service-block .icon-wrapper:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: scale(1.05);
}

.service-block .icon-wrapper svg {
	fill: #D4AF37;
}

.service-block .service-title {

	font-weight: 600;
	margin-top: 10px;
	color: #fff;
	letter-spacing: 0.5px;
}

.tooltip-custom {
	position: absolute;
	bottom: -35px;
	background-color: #111;
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.75rem;
	opacity: 0;
	pointer-events: none;
	transform: translateY(5px);
	transition: 0.2s ease;
	white-space: nowrap;
}

.icon-wrapper:hover .tooltip-custom {
	opacity: 1;
	transform: translateY(0);
}

.service-card {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 40%, rgba(216, 212, 188, 0.15) 100%);
	border: 2px solid #D4AF37;
	border-radius: 0.75rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 2rem;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
}

.service-icon {
	margin-bottom: 1rem;
	border-radius: 0.5rem;
	max-height: 280px;
	width: 100%;
	object-fit: cover;
}

.service-card h4 {
	color: #D4AF37;
	font-weight: 600;
	font-size: 1.25rem;
	margin: 0.5rem 0;
}

.service-card p {
	color: #ccc;
	font-size: 0.95rem;
	line-height: 1.5;
	flex-grow: 1;
	margin-bottom: 0;
}

.wave-section {
	position: relative;
	background-color: #000;
	/* solid black base */
	color: #fff;
	padding-bottom: 3rem;
	overflow: hidden;
}

.wave-section::before {
	content: "";
	position: absolute;
	inset: 0;
	/* shorthand for top/right/bottom/left = 0 */
	/* gold at center → black by 70% radius */
	background: radial-gradient(circle at center,
			rgba(212, 175, 55, 0.4) 45%,
			rgba(0, 0, 0, 1) 99%);
	/* optional rotation animation */

	z-index: 0;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

f .wave-content {
	position: relative;
	z-index: 1;
}

.wave-icon {
	color: #D4AF37;
	font-size: 6rem;
	margin-bottom: 1rem;
	display: inline-block;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.wave-pretitle {
	color: #ccc;
	letter-spacing: 5px;
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 1rem;
}

.wave-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;

}

.wave-text {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #e0e0e0;
}



.subscribe-btn:hover {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
	color: #fff;
}

.btn-vip {
	background: linear-gradient(135deg, #D4AF37, #b8860b);
	color: #000;
	padding: 0.75rem 2rem;
	font-weight: 700;
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.btn-vip:hover {
	background: linear-gradient(135deg, #b8860b, #D4AF37);
	color: #fff;
	transform: scale(1.05);
}



.modal-backdrop {
	display: none;
}

.modal-content {
	background: linear-gradient(180deg, #111, #000);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.vip-transport-section {
	--vip-gold: #ffc107;
}

.vip-transport-section .vip-transport-title {
	color: var(--vip-gold);
	border-color: var(--vip-gold);
}

.vip-transport-section .vip-card {
	background-color: #000;
	transition: all 0.3s ease;
}

.vip-transport-section .vip-card-img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.vip-transport-section .vip-card-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	transition: background 0.3s ease;
}

.vip-transport-section .vip-card:hover .vip-card-overlay {
	background: linear-gradient(to top, rgba(255, 193, 7, 0.2), rgba(0, 0, 0, 0.6));
}

.vip-transport-section .vip-card-title {
	color: var(--vip-gold);
}

.vip-transport-section .vip-card-text {
	color: #eee;
}

.vip-transport-section .vip-btn {
	color: var(--vip-gold);
	border: 1px solid var(--vip-gold);
	background: transparent;
	transition: background 0.3s ease, color 0.3s ease;
}

.vip-transport-section .vip-btn:hover {
	background: var(--vip-gold);
	color: #000;
}


.vip-icon {
	width: 3rem;
	height: 3rem;
	fill: #AB9028;
	transition: transform 0.2s ease, fill 0.2s ease;
}


.bvip-overlay-wrap {
	position: relative;
	pointer-events: none;
	opacity: 0.6;
}

.bvip-no-access-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(17, 17, 17, 0.85);
	color: #f1c40f;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	border-radius: 0.5rem;
	text-align: center;
	transition: background 0.3s ease;
}

.bvip-no-access-overlay span {
	pointer-events: none;
}

.icon-link:hover .vip-icon {
	transform: scale(1.1);
	fill: #d3b358;
}

.icon-link .fw-bold {
	color: #fff;
	font-size: 1.1rem;
	transition: color 0.2s ease;
}

.icon-link:hover .fw-bold {
	color: #AB9028;
}





/* Section & Card */
.party-packages-section {
	background: radial-gradient(circle at top, #111 0%, #000 100%);
}

.package-card {
	background-color: #161616;
	border-radius: 12px;
	padding: 30px 20px;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.03);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.package-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

/* Title & Tier */
.package-title {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.package-tier {
	color: #AB9028;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 0.95rem;
	margin-bottom: 20px;
}

/* Price */
.package-price {
	display: flex;
	justify-content: center;
	align-items: baseline;
	font-size: 2rem;
	color: #fff;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
	margin-bottom: 20px;
}

.package-price span {
	margin: 0 4px;
}

/* Features */
.package-feature {
	color: #ccc;
	font-size: 0.9rem;
	padding: 6px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.package-feature:first-of-type {
	border-top: none;
}

/* Button */
.package-btn {
	margin: 20px;
	border-radius: 50px;
	font-weight: 600;
	padding: 10px 22px;
	letter-spacing: 0.4px;
	font-size: 12px;
}
