/* =========================================================
   hup! page – Bootstrap layout + brand styling
   Navy #061D28 | Lime #97d700 | Quicksand
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

.hup-page {
	--hup-navy: #061d28;
	--hup-navy-deep: #081f2d;
	--hup-lime: #97d700;
	font-family: Quicksand, sans-serif;
	background: #fff;
}

/* .hup-page h1,
.hup-page h2,
.hup-page h3,
.hup-page h4,
.hup-page h5,
.hup-page h6,
.hup-page p,
.hup-page a,
.hup-page span,
.hup-page li,
.hup-page button {
	font-family: Quicksand, sans-serif !important;
} */

.hup-brand {
	color: var(--hup-lime) !important;
	font-size: 45px !important;
	font-weight: 500 !important;
	letter-spacing: 1px;
}

.hup-rule {
	width: 90px;
	height: 2px;
	background: var(--hup-lime);
	margin: 31px 0 40px;
	border: 0;
}

.hup-rule--center {
	margin-left: auto;
	margin-right: auto;
}

.hup-btn {
	display: inline-block;
	background: var(--hup-lime) !important;
	border: 1px solid var(--hup-lime) !important;
	color: #fff !important;
	text-decoration: none !important;
	text-transform: none !important;
	padding: 1.5rem 4rem;
	font-weight: 600 !important;
	letter-spacing: 1px;
	font-size: 15px !important;
	line-height: 1;
	border-radius: 0 !important;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hup-btn:hover,
.hup-btn:focus {
	background: #d8d7d6 !important;
	border-color: #d8d7d6 !important;
	color: #061d28 !important;
}

/* Angled section transitions – full-width diagonals, no navy bleed */
.hup-better,
.hup-ranges,
.hup-brochure {
	position: relative;
	z-index: 1;
}

/* Bottom: white fills everything below the diagonal (left low → right high) */
.hup-better::after,
.hup-ranges::after,
.hup-brochure::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70px;
	background: #fff;
	clip-path: polygon(0 100%, 0 55%, 100% 0, 100% 100%);
	-webkit-clip-path: polygon(0 100%, 0 55%, 100% 0, 100% 100%);
	z-index: 5;
	pointer-events: none;
}

/* Top: white fills everything above the diagonal (left low → right high) */
.hup-ranges::before,
.hup-brochure::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 70px;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
	z-index: 5;
	pointer-events: none;
}

/* ---------- Hero ---------- */
.hup-hero {
	position: relative;
	height: 800px;
	max-height: 92vh;
	min-height: 560px;
	overflow: hidden;
	background: #000;
	color: #fff;
}

.hup-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hup-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(8, 31, 45, 0.55) 0%,
		rgba(8, 31, 45, 0.25) 45%,
		rgba(8, 31, 45, 0.1) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.hup-hero__container {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	padding-top: 40px;
	padding-bottom: 80px;
}

.hup-hero__content {
	position: relative;
	z-index: 2;
	padding-top: 40px;
}

.hup-hero__play {
	display: flex;
	align-items: center;
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0 0 25px;
	cursor: pointer;
	color: #fff;
}

.hup-hero__play-circle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.46);
	transition: background 0.3s ease;
	flex-shrink: 0;
}

.hup-hero__play-circle::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120%;
	height: 120%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.46);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.hup-hero__play:hover .hup-hero__play-circle {
	background: #fff;
}

.hup-hero__play-circle .fa-play {
	color: #000 !important;
	font-size: 21px;
	margin-left: 3px;
	position: relative;
	z-index: 1;
}

.hup-hero__play-label {
	font-size: 15px;
	letter-spacing: 1.92px;
	font-weight: 500;
	color: #fff;
	margin-left: 18px;
	white-space: nowrap;
}

.hup-hero__title {
	font-family: Quicksand, sans-serif !important;
	font-weight: 500 !important;
	letter-spacing: 1px;
	font-size: 64px !important;
	line-height: 1em !important;
	color: #fff !important;
	margin: 0;
}

.hup-hero__rule {
	width: 90px;
	height: 2px;
	background: var(--hup-lime);
	margin: 31px 0 73px;
}

.hup-hero__logo-box {
	position: absolute;
	right: 0;
	bottom: -1px;
	z-index: 3;
	width: 247px;
	height: 235px;
	background: #081f2d;
	padding: 1rem 1rem 0;
	clip-path: polygon(0 27%, 100% 0, 100% 100%, 0 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hup-hero__logo {
	width: 180px;
	max-width: 78%;
	height: auto;
	display: block;
	margin: 2.75rem auto 0;
	position: relative;
	top: 12px;
}

.hup-hero-gap {
	height: 70px;
	background: #fff;
}

/* ---------- Better way ---------- */
.hup-better {
	background: #061d28;
	color: #fff;
	position: relative;
	padding: 100px 0 120px;
}

.hup-better__heading {
	font-family: Quicksand, sans-serif !important;
	font-size: 48px !important;
	font-weight: 500 !important;
	color: #fff !important;
	margin: 0;
	line-height: 1.15 !important;
}

.hup-better__item {
	margin-bottom: 2.75rem;
}

.hup-better__icon img {
	width: 77px;
	height: auto;
	display: block;
}

.hup-better__title {
	font-family: Quicksand, sans-serif !important;
	font-size: 22px !important;
	font-weight: 500 !important;
	color: #fff !important;
	margin: 0 0 0.65rem;
	line-height: 1.25 !important;
}

.hup-better__text {
	color: #fff;
	font-size: 16px;
	line-height: 1.55;
	max-width: 360px;
}

.hup-better__cta {
	margin-top: 1rem;
}
.hup-better__list{
	display: flex;
    flex-flow: row wrap;
}



/* ---------- Personalise ---------- */
.hup-personalise {
	background: #fff;
	padding: 70px 0 40px;
}

.hup-personalise__header {
	margin-bottom: 1.5rem;
}

.hup-personalise__title {
	font-family: Quicksand, sans-serif !important;
	font-size: 42px !important;
	font-weight: 500 !important;
	color: #061d28 !important;
	margin: 0;
	line-height: 1.15 !important;
}

.hup-personalise__header .hup-rule {
	margin: 20px 0 0;
}

.hup-btn--brochure {
	padding: 1.5rem 2rem;
	margin-top: 0.35rem;
}

.hupConfigurator {
	text-align: center;
	margin-top: 1rem;
}

.hupConfigurator iframe {
	width: 100%;
	max-width: 1100px;
	height: 762px;
	border: 0;
	display: block;
	margin: 0 auto;
	background: #f3f3f3;
}

/* ---------- Ranges ---------- */
.hup-ranges {
	background: #061d28;
	color: #fff;
	position: relative;
	padding: 100px 0 120px;
}

.hup-ranges__card {
	margin-bottom: 2rem;
}

.hup-ranges__media {
	margin-bottom: 1.15rem;
	min-height: 378px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.hup-ranges__media img {
	max-width: 317px;
	width: 100%;
	height: auto;
	display: block;
}

.hup-ranges__title {
	font-family: Quicksand, sans-serif !important;
	font-size: 24px !important;
	font-weight: 500 !important;
	color: #fff !important;
	margin: 0 0 0.75rem;
	line-height: 1.25 !important;
}

.hup-ranges__text {
	color: #fff;
	font-size: 16px !important;
	line-height: 1.5;
}

/* ---------- Flexibility ---------- */
.hup-flexibility {
	background: #fff;
	padding: 70px 0 50px;
}

.hup-flexibility__title {
	font-family: Quicksand, sans-serif !important;
	font-size: 42px !important;
	font-weight: 500 !important;
	color: #061d28 !important;
	margin: 0;
	line-height: 1.15 !important;
}

.hup-flexibility .hup-rule {
	margin-top: 24px;
	margin-bottom: 10px;
}

.hup-flexibility__video {
	display: block;
	width: 100%;
	max-width: 1100px;
	margin: 28px auto 33px;
	background: #000;
}

/* ---------- Brochure ---------- */
.hup-brochure {
	background: #061d28;
	color: #fff;
	position: relative;
	padding: 100px 0 120px;
}

.hup-brochure__title {
	font-family: Quicksand, sans-serif !important;
	font-size: 42px !important;
	font-weight: 500 !important;
	letter-spacing: 1px;
	color: #fff !important;
	margin: 0;
	line-height: 1em !important;
}

.hup-brochure__title .hup-brand {
	font-size: 45px !important;
}

.hup-brochure .hup-rule {
	margin: 28px auto 36px;
}

.hup-brochure__video-wrap {
	max-width: 900px;
	margin-bottom: 2.5rem;
}

.hup-brochure__video {
	width: 100%;
	height: auto;
	max-height: 356px;
	display: block;
	background: #000;
	margin: 0 auto;
}

.hup-brochure__download {
	margin-bottom: 40px !important;
}

/* ---------- Gallery ---------- */
.hup-gallery {
	background: #fff;
	padding: 40px 0 70px;
}

.hup-gallery__title {
	font-family: Quicksand, sans-serif !important;
	font-size: 42px !important;
	font-weight: 500 !important;
	color: #061d28 !important;
	margin: 40px 0 0;
	line-height: 1.15 !important;
}

.hup-gallery .hup-rule {
	margin: 24px auto 30px;
}

.hup-gallery__slide {
	padding: 0 10px;
}

.hup-gallery__link {
	display: block;
	overflow: hidden;
}

.hup-gallery__link img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.hup-gallery__link:hover img {
	transform: scale(1.04);
}

.hup-gallery .slick-prev,
.hup-gallery .slick-next {
	z-index: 2;
	width: 44px;
	height: 44px;
}

.hup-gallery .slick-prev:before,
.hup-gallery .slick-next:before {
	color: #061d28;
	font-size: 28px;
	opacity: 0.85;
}

.hup-gallery .slick-prev {
	left: 0;
}

.hup-gallery .slick-next {
	right: 0;
}

/* ---------- Service area ---------- */
/* AOS fade-up starts at opacity 0; an overflow ancestor can prevent aos-animate, so keep this block visible. */
.hup-page .service-area__media[data-aos],
.hup-page .service-area__content[data-aos],
.hup-page .reviews__widget[data-aos] {
	opacity: 1;
	transform: none;
}

/* ---------- Modal / Lightbox ---------- */
.hup-modal[hidden],
.hup-lightbox[hidden] {
	display: none !important;
}

.hup-modal,
.hup-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.hup-modal__backdrop,
.hup-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
}

.hup-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	background: #000;
}

.hup-modal__video {
	width: 100%;
	display: block;
	max-height: 80vh;
}

.hup-modal__close,
.hup-lightbox__close {
	position: absolute;
	top: -2.5rem;
	right: 0;
	z-index: 2;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 2.25rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.25rem;
}

.hup-lightbox__image {
	position: relative;
	z-index: 1;
	max-width: min(1100px, 94vw);
	max-height: 88vh;
	object-fit: contain;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.hup-lightbox .hup-lightbox__close {
	top: 1rem;
	right: 1.25rem;
	position: fixed;
}

body.hup-modal-open {
	overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
	.hup-better {
		padding-top: 70px;
	}

	.hup-better__intro {
		margin-bottom: 2rem;
	}

	.hup-better__item .col-12 {
		margin-bottom: 0.5rem;
	}

	.hup-personalise__header .text-lg-right {
		text-align: left !important;
		margin-top: 1rem;
	}

	.hup-hero__title {
		font-size: 48px !important;
	}

	.hup-better__heading,
	.hup-personalise__title,
	.hup-flexibility__title,
	.hup-brochure__title,
	.hup-gallery__title {
		font-size: 36px !important;
	}

	.hup-brand {
		font-size: 36px !important;
	}

	.hupConfigurator iframe {
		height: 640px;
	}
}

@media (max-width: 767.98px) {
	.hup-hero {
		height: auto;
		min-height: 620px;
		max-height: none;
	}

	.hup-hero__container {
		align-items: flex-start;
		padding-top: 70px;
		padding-bottom: 160px;
	}

	.hup-hero__title {
		font-size: 36px !important;
	}

	.hup-hero__rule {
		margin: 24px 0 48px;
	}

	.hup-hero__logo-box {
		width: 180px;
		height: 170px;
	}

	.hup-hero__logo {
		width: 130px;
		margin-top: 1.75rem;
	}

	.hup-hero-gap {
		height: 40px;
	}

	.hup-btn {
		padding: 1.25rem 2rem;
	}

	.hup-ranges__media img {
		max-width: 100%;
	}

	.hupConfigurator iframe {
		height: 520px;
	}

	.hup-gallery__link img {
		height: 220px;
	}

	.hup-brochure__video {
		max-height: none;
	}
}


.free-quote__badge-top,
.free-quote__badge-main{
	font-family: "Roboto", sans-serif;
}