/* Unique World Holidays — Home page "Advantage" section.
   Same-to-same copy of the Elementor section it replaced — background
   image + flat rgba(0,0,0,0.5) overlay (no parallax, no fixed-attachment,
   confirmed via computed styles on the live Elementor version), badge
   pill matching the site-wide badge pattern (Team/What Sets Us
   Apart/Seasonal Favorites), and a max-width column of centered text.
   .gsap-fade-in on the section is this project's existing reusable
   scroll-reveal utility (see assets/js/animations.js) — not a new
   animation system, just hooking into the one already loaded site-wide. */

.uwh-advantage {
	position: relative;
	width: 100%;
	padding: 80px 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.uwh-advantage-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.uwh-advantage-inner {
	position: relative;
	z-index: 1;
	max-width: 1260px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.uwh-advantage-badge {
	display: inline-block;
	width: fit-content;
	font-family: Poppins, sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	background: linear-gradient(120deg, #13294b, #43597a);
	padding: 10px 20px;
	border-radius: 50px;
	box-shadow: 0 0 7px 0.3px rgba(0, 0, 0, 0.5);
	margin: 0 0 10px;
}

.uwh-advantage-title {
	margin: 0 0 20px;
	max-width: 100%;
	font-family: Poppins, sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
}

.uwh-advantage-description {
	max-width: 630px;
}
.uwh-advantage-description p {
	margin: 0 0 10px;
	font-family: Roboto, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: #f4f6ef;
}
.uwh-advantage-description p:last-child {
	margin-bottom: 30px;
}

.uwh-advantage-cta {
	display: inline-block;
	background-color: #13294b;
	color: #f4f6ef;
	font-family: Poppins, sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	padding: 17px 30px;
	border-radius: 20px;
	transition: background-color 0.2s ease;
}
.uwh-advantage-cta:hover,
.uwh-advantage-cta:focus {
	background-color: #203658;
	color: #f4f6ef;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.uwh-advantage {
		padding: 60px 10px;
	}
	.uwh-advantage-title {
		font-size: 32px;
	}
	.uwh-advantage-cta {
		padding: 12px 20px;
	}
}

@media (max-width: 782px) {
	.uwh-advantage {
		padding: 40px 20px;
	}
	.uwh-advantage-title {
		font-size: 24px;
	}
}
