/**
 * Landing page — conversion-focused sections.
 */

.landing-trust {
	background: var(--sh-navy);
	color: var(--sh-white);
	padding: 28px 0;
}

.landing-trust__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: center;
}

.landing-trust__item {
	padding: 8px 12px;
}

.landing-trust__value {
	display: block;
	font-family: var(--sh-font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--sh-lime);
	line-height: 1.2;
	margin-bottom: 4px;
}

.landing-trust__label {
	font-family: var(--sh-font-ui);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.4;
}

.landing-value-card {
	background: var(--sh-white);
	border: 1px solid var(--sh-divider);
	border-radius: 16px;
	padding: 32px 28px;
	height: 100%;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(26, 43, 78, 0.1);
	border-color: rgba(140, 165, 61, 0.4);
}

.landing-value-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(162, 192, 55, 0.18) 0%, rgba(0, 160, 220, 0.12) 100%);
	color: var(--sh-olive);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.landing-value-card__icon svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.landing-value-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.landing-value-card p {
	font-size: 0.95rem;
	line-height: 1.65;
	margin-bottom: 0;
	color: var(--sh-text-body);
}

.landing-featured-card {
	display: block;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	min-height: 320px;
	text-decoration: none;
	color: var(--sh-white);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-featured-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(26, 43, 78, 0.22);
	color: var(--sh-white);
}

.landing-featured-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.landing-featured-card:hover .landing-featured-card__img {
	transform: scale(1.05);
}

.landing-featured-card__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26, 43, 78, 0.15) 0%, rgba(26, 43, 78, 0.75) 100%);
}

.landing-featured-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	padding: 28px 24px;
}

.landing-featured-card__label {
	font-family: var(--sh-font-ui);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sh-lime);
	margin-bottom: 8px;
}

.landing-featured-card h3 {
	color: var(--sh-white);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	margin-bottom: 8px;
}

.landing-featured-card p {
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 14px;
}

.landing-featured-card__cta {
	font-family: var(--sh-font-ui);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sh-lime);
}

.landing-steps {
	counter-reset: landing-step;
}

.landing-step {
	position: relative;
	background: var(--sh-white);
	border: 1px solid var(--sh-divider);
	border-radius: 16px;
	padding: 32px 24px 28px;
	height: 100%;
	text-align: center;
}

.landing-step::before {
	counter-increment: landing-step;
	content: counter(landing-step);
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--sh-lime);
	color: var(--sh-navy);
	font-family: var(--sh-font-ui);
	font-size: 0.9rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(162, 192, 55, 0.4);
}

.landing-step h3 {
	font-size: 1.1rem;
	margin: 8px 0 10px;
}

.landing-step p {
	font-size: 0.92rem;
	line-height: 1.6;
	margin-bottom: 0;
	color: var(--sh-text-body);
}

.landing-mid-cta {
	background: linear-gradient(135deg, var(--sh-olive) 0%, var(--sh-lime) 55%, var(--sh-sky-light) 100%);
	padding: 56px 0;
}

.landing-mid-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.landing-mid-cta__copy h2 {
	color: var(--sh-navy);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 8px;
}

.landing-mid-cta__copy p {
	color: var(--sh-navy);
	opacity: 0.85;
	margin-bottom: 0;
	font-size: 1rem;
	max-width: 520px;
}

.landing-mid-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

.landing-service-card {
	display: flex;
	flex-direction: column;
	background: var(--sh-white);
	border: 1px solid var(--sh-divider);
	border-radius: 14px;
	overflow: hidden;
	height: 100%;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(26, 43, 78, 0.1);
	border-color: rgba(140, 165, 61, 0.35);
}

.landing-service-card__img-wrap {
	position: relative;
	flex-shrink: 0;
	height: 200px;
	line-height: 0;
	overflow: hidden;
	background: var(--sh-section, #f4f6f8);
}

.landing-service-card__img {
	width: 100%;
	height: 100%;
	max-height: 200px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.35s ease;
}

.landing-service-card:hover .landing-service-card__img {
	transform: scale(1.04);
}

.landing-service-card__body {
	padding: 22px 20px 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.landing-service-card h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.landing-service-card h3 a {
	color: var(--sh-navy);
	text-decoration: none;
}

.landing-service-card h3 a:hover {
	color: var(--sh-olive);
}

.landing-service-card p {
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--sh-text-body);
	flex-grow: 1;
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.landing-service-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin-top: auto;
}

.landing-service-card__links a {
	font-family: var(--sh-font-ui);
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.04em;
}

.landing-service-card__links .link-learn {
	color: var(--sh-olive);
}

.landing-service-card__links .link-book {
	color: var(--sh-ocean);
}

/* About story + floating image */
.landing-about__lead {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--sh-text-body);
	margin-bottom: 1rem;
}

.landing-about__highlights li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.65rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--sh-text-body);
}

.landing-about__highlights li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sh-lime);
	box-shadow: 0 0 0 3px rgba(162, 192, 55, 0.25);
}

.landing-about__float-wrap {
	position: relative;
	padding: 20px 20px 32px;
}

.landing-about__float-wrap::before {
	content: "";
	position: absolute;
	inset: 0 12px 12px 0;
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(162, 192, 55, 0.22) 0%, rgba(0, 160, 220, 0.14) 100%);
	z-index: 0;
	transform: rotate(2deg);
}

.landing-about__float-img {
	position: relative;
	z-index: 1;
	border-radius: 18px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	box-shadow:
		0 28px 56px rgba(26, 43, 78, 0.22),
		0 12px 24px rgba(26, 43, 78, 0.12),
		0 0 0 1px rgba(255, 255, 255, 0.6) inset;
	transform: rotate(-1.5deg) translateY(-6px);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.landing-about__float-wrap:hover .landing-about__float-img {
	transform: rotate(0deg) translateY(-10px);
	box-shadow:
		0 36px 64px rgba(26, 43, 78, 0.26),
		0 16px 32px rgba(26, 43, 78, 0.14);
}

.landing-about__badge {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 2;
	background: var(--sh-navy);
	color: var(--sh-white);
	border-radius: 12px;
	padding: 12px 16px;
	box-shadow: 0 12px 28px rgba(26, 43, 78, 0.28);
	text-align: center;
	min-width: 120px;
}

.landing-about__badge-label {
	display: block;
	font-family: var(--sh-font-ui);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sh-lime);
	margin-bottom: 2px;
}

.landing-about__badge-value {
	display: block;
	font-family: var(--sh-font-display);
	font-size: 1rem;
	font-weight: 700;
}

/* About page story (text-only) */
.about-page-story__body {
	max-width: 52rem;
}

.about-page-story__lead {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--sh-text-body);
	margin-bottom: 1rem;
}

.about-page-story__highlights li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.65rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--sh-text-body);
}

.about-page-story__highlights li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sh-lime);
	box-shadow: 0 0 0 3px rgba(162, 192, 55, 0.25);
}

.about-page-story__pill {
	display: inline-block;
	font-family: var(--sh-font-ui);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sh-navy);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(26, 43, 78, 0.12);
	border-radius: 999px;
	padding: 0.45rem 0.85rem;
}

/* Core values */
.landing-values {
	background: linear-gradient(180deg, var(--sh-navy) 0%, #152238 100%);
	color: var(--sh-white);
}

.landing-values__label {
	color: var(--sh-lime) !important;
}

.landing-values__title {
	color: var(--sh-white);
}

.landing-values__intro {
	max-width: 640px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
}

.landing-values .divider {
	background: var(--sh-lime);
}

.landing-values__card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 24px 22px;
	height: 100%;
	transition: transform 0.22s ease, background 0.22s ease;
}

.landing-values__card:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.11);
}

.landing-values__num {
	display: inline-block;
	font-family: var(--sh-font-ui);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--sh-lime);
	margin-bottom: 10px;
}

.landing-values__card h3 {
	color: var(--sh-white);
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.landing-values__card p {
	font-size: 0.9rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 0;
}

/* Packages */
.landing-packages__intro {
	max-width: 680px;
}

.landing-package {
	background: var(--sh-white);
	border: 1px solid var(--sh-divider);
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.landing-package:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 36px rgba(26, 43, 78, 0.12);
}

.landing-package__media {
	position: relative;
	display: block;
	flex-shrink: 0;
	height: 200px;
	line-height: 0;
	overflow: hidden;
	background: var(--sh-section, #f4f6f8);
}

.landing-package__img {
	width: 100%;
	height: 100%;
	max-height: 200px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.35s ease;
}

.landing-package__img--empty {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 200px;
	background: linear-gradient(135deg, var(--sh-teal, #2d6a6a) 0%, var(--sh-navy, #1a2b4e) 100%);
}

.landing-package:hover .landing-package__img:not(.landing-package__img--empty) {
	transform: scale(1.05);
}

/* Keep package card media fixed even if Elementor / theme img rules set height:auto */
.elementor .landing-package__media,
.landing-package__media {
	height: 200px;
	max-height: 200px;
}

.elementor .landing-package__img,
.landing-package__img {
	height: 100% !important;
	max-height: 200px !important;
	object-fit: cover !important;
	object-position: center;
}

.landing-package__tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--sh-navy);
	color: var(--sh-lime);
	font-family: var(--sh-font-ui);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 10px;
	border-radius: 6px;
}

.landing-package__body {
	padding: 20px 18px 22px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.landing-package h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.landing-package h3 a {
	color: var(--sh-navy);
	text-decoration: none;
}

.landing-package h3 a:hover {
	color: var(--sh-olive);
}

.landing-package__body p {
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--sh-text-body);
	flex-grow: 1;
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.landing-package__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: auto;
}

.landing-package__price {
	font-family: var(--sh-font-ui);
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--sh-olive);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.landing-package__book {
	font-family: var(--sh-font-ui);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--sh-ocean);
	text-decoration: none;
}

.landing-package__book:hover {
	color: var(--sh-navy);
}

/* Testimonials grid */
.landing-testimonials__card {
	background: var(--sh-white);
	border: 1px solid var(--sh-divider);
	border-radius: 16px;
	padding: 28px 24px;
	height: 100%;
	box-shadow: 0 8px 24px rgba(26, 43, 78, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.landing-testimonials__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(26, 43, 78, 0.1);
}

.landing-testimonials__stars {
	color: var(--sh-lime);
	font-size: 0.95rem;
	letter-spacing: 2px;
	margin-bottom: 14px;
}

.landing-testimonials__card blockquote {
	font-family: var(--sh-font-display);
	font-size: 1.02rem;
	font-style: italic;
	color: var(--sh-navy);
	line-height: 1.65;
	margin-bottom: 16px;
	border: none;
	padding: 0;
}

.landing-testimonials__card cite {
	display: block;
	font-family: var(--sh-font-ui);
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 700;
	color: var(--sh-navy);
	margin-bottom: 4px;
}

.landing-testimonials__detail {
	display: block;
	font-size: 0.78rem;
	color: var(--sh-olive);
	font-family: var(--sh-font-ui);
}

/* Book CTA + embedded wizard */
.landing-book {
	background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-ocean) 55%, var(--sh-sky) 100%);
	color: var(--sh-white);
	scroll-margin-top: 96px;
}

.landing-book__label {
	color: var(--sh-lime) !important;
}

.landing-book__title {
	color: var(--sh-white);
}

.landing-book .divider {
	background: var(--sh-lime);
}

.landing-book__lead {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	font-size: 1rem;
}

.landing-book__contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.landing-book__pill {
	display: block;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	padding: 14px 16px;
	text-decoration: none;
	color: var(--sh-white);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.landing-book__pill:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: var(--sh-lime);
	color: var(--sh-white);
}

.landing-book__pill strong {
	display: block;
	font-family: var(--sh-font-ui);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sh-lime);
	margin-bottom: 4px;
}

.landing-book__pill span {
	font-size: 0.92rem;
	font-weight: 600;
}

.landing-book__checks li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.55rem;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.5;
}

.landing-book__checks li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--sh-lime);
	font-weight: 700;
}

	.landing-book .booking-wizard {
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

/* FAQ accordion */
.landing-faq__item {
	border: 1px solid var(--sh-divider);
	border-radius: 12px !important;
	overflow: hidden;
	margin-bottom: 12px;
	background: var(--sh-white);
	box-shadow: 0 2px 8px rgba(26, 43, 78, 0.04);
}

.landing-faq__item .accordion-button {
	font-family: var(--sh-font-ui);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--sh-navy);
	background: var(--sh-white);
	box-shadow: none;
	padding: 1rem 1.25rem;
}

.landing-faq__item .accordion-button:not(.collapsed) {
	color: var(--sh-navy);
	background: rgba(162, 192, 55, 0.08);
}

.landing-faq__item .accordion-button:focus {
	box-shadow: 0 0 0 3px rgba(162, 192, 55, 0.25);
}

.landing-faq__item .accordion-body {
	font-size: 0.92rem;
	line-height: 1.65;
	padding: 1rem 1.25rem 1.25rem;
}

@media (max-width: 992px) {
	.landing-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.landing-trust__grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.landing-mid-cta__inner {
		text-align: center;
		justify-content: center;
	}

	.landing-mid-cta__actions {
		justify-content: center;
		width: 100%;
	}

	.landing-featured-card {
		min-height: 280px;
	}

	.landing-about__float-img {
		transform: none;
	}

	.landing-book__contact {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.landing-trust__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.landing-featured-card,
	.landing-featured-card__img,
	.landing-service-card,
	.landing-service-card__img,
	.landing-value-card,
	.landing-package,
	.landing-testimonials__card,
	.landing-about__float-img {
		transition: none;
	}
}
