/* Satelit Lux paketi — baneri, teaser kartice, detalj stranice */

.lux-package-teaser__banner {
	display: block;
	margin: -22px -22px 16px;
	border-radius: 18px 18px 0 0;
	overflow: hidden;
	line-height: 0;
}

.lux-package-card__banner {
	display: block;
	margin: calc(-1 * clamp(22px, 2.4vw, 28px)) calc(-1 * clamp(22px, 2.4vw, 28px)) 16px;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	line-height: 0;
}

.lux-package-teaser__banner img,
.lux-package-card__banner img {
	width: 100%;
	height: auto;
	aspect-ratio: 1200 / 630;
	object-fit: cover;
	object-position: left center;
	display: block;
	transition: transform 0.35s ease;
}

.lux-package-teaser:hover .lux-package-teaser__banner img,
.lux-package-card:hover .lux-package-card__banner img {
	transform: scale(1.03);
}

/* Desktop — cela slika paketa vidljiva, bez sečenja */
@media (min-width: 992px) {
	.lux-package-teaser__banner img,
	.lux-package-card__banner img {
		aspect-ratio: 1672 / 941;
		object-fit: contain;
		object-position: center center;
		background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
	}
}

.lux-package-teaser__banner:focus-visible,
.lux-package-card__banner:focus-visible {
	outline: 2px solid #C9A84C;
	outline-offset: 2px;
}

/* Teaser kartice — isti izgled na početnoj i cenovniku */
#cene-paketi.our-service {
	background: #ffffff;
	padding: clamp(48px, 6vw, 72px) 0;
}

.lux-packages-teaser {
	margin-top: clamp(8px, 1.5vw, 16px);
}

.lux-package-teaser {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 18px;
	padding: 22px;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.lux-package-teaser:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.lux-package-teaser__title {
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1.35;
}

.lux-package-teaser p.lux-package-teaser__desc {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 0;
	flex: 1;
}

.lux-package-teaser p.lux-package-teaser__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.35em 0.5em;
	margin-top: 18px;
	margin-bottom: 24px;
	padding: 4px 0;
	line-height: 1.2;
}

.lux-package-teaser__amount {
	font-size: clamp(20px, 1.6vw, 24px);
	font-weight: 700;
	color: #A88635;
	letter-spacing: -0.3px;
}

.lux-package-teaser__amount--was {
	font-size: clamp(16px, 1.3vw, 19px);
	font-weight: 600;
	color: #94a3b8;
	text-decoration: line-through;
	text-decoration-color: #cbd5e1;
}

.lux-package-card__price-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.45em 0.65em;
}

.lux-package-card__price--was {
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 600;
	color: #94a3b8;
	text-decoration: line-through;
	text-decoration-color: #cbd5e1;
}

.lux-package-teaser__per {
	font-size: 13px;
	font-weight: 500;
	color: #94a3b8;
}

.lux-package-teaser__per::before {
	content: "·";
	margin-right: 0.45em;
	color: #cbd5e1;
}

.lux-package-teaser__cta {
	display: flex;
	justify-content: flex-start;
	margin-top: auto;
	padding-top: 4px;
}

.lux-package-teaser__cta .btn-default {
	width: auto;
	flex: 0 0 auto;
	text-align: center;
	justify-content: center;
	text-transform: none;
}

.lux-package-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.lux-package-card__title a:hover {
	color: #A88635;
}

/* Hero na posebnim stranicama paketa — cela slika vidljiva */
.lux-package-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	margin-top: 0;
	line-height: 0;
	background: #0f172a;
}

.lux-package-hero img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
	object-position: center;
	display: block;
}

.lux-package-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(8, 8, 8, 0.35) 0%,
		rgba(8, 8, 8, 0.05) 35%,
		rgba(8, 8, 8, 0.25) 100%
	);
}

.lux-package-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: clamp(20px, 4vw, 36px);
	transform: translateX(-50%);
	z-index: 2;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color 0.2s ease;
}

.lux-package-hero__scroll:hover {
	color: #fff;
}

.lux-package-hero__scroll-line {
	width: 1px;
	height: 36px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
	animation: luxHeroScroll 1.8s ease-in-out infinite;
}

@keyframes luxHeroScroll {
	0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
	50% { opacity: 1; transform: scaleY(1); }
}

/* Sadržaj ispod heroja */
.lux-package-page {
	padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 96px);
	background: linear-gradient(180deg, #f8fafc 0%, #fff 120px);
}

.lux-package-page__back {
	margin-bottom: clamp(24px, 3vw, 32px);
}

.lux-package-page__back a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
	text-decoration: none;
	transition: color 0.2s ease;
}

.lux-package-page__back a:hover {
	color: #A88635;
}

.lux-package-page .lux-package-card {
	max-width: 760px;
	margin: 0 auto;
	padding-top: clamp(8px, 1.5vw, 16px);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.lux-package-page .lux-package-card__banner {
	display: none;
}

.lux-package-page .lux-package-card__title {
	font-size: clamp(24px, 2.8vw, 32px);
	margin-bottom: 8px;
	text-align: center;
}

.lux-package-page .lux-package-card__meta {
	text-align: center;
}

.lux-package-page .lux-package-card__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}

.lux-package-page .lux-package-card__cta .btn-default {
	flex: 1 1 auto;
	min-width: 160px;
	text-align: center;
	justify-content: center;
	gap: 8px;
}

/* Široka dugmad: dijagonalni ::after ne pokriva celu kapsulu */
.lux-package-page .lux-package-card__cta .btn-default::after {
	top: 50%;
	left: 0;
	width: 100%;
	height: 0;
	transform: translateY(-50%);
}

.lux-package-page .lux-package-card__cta .btn-default:hover::after {
	height: 100%;
	opacity: 1;
}

.lux-package-page .lux-packages-tagline {
	margin-top: clamp(36px, 5vw, 52px);
}

@media (max-width: 991px) {
	.lux-package-hero {
		margin-top: 0;
		overflow: visible;
	}

	.lux-package-hero img {
		width: 100%;
		height: auto;
		max-height: none;
		object-fit: unset;
		object-position: center top;
	}
}

#package-sections-mount .lux-package-below {
	padding: clamp(28px, 4vw, 48px) 0 0;
	background: transparent;
}

#package-sections-mount .lux-package-below .lux-package-below__block {
	margin: 0 0 clamp(36px, 5vw, 56px);
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

#package-sections-mount .lux-package-below .lux-package-below__eyebrow {
	display: inline-block;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #A88635;
}

#package-sections-mount .lux-package-below .lux-package-below__title {
	margin: 0 0 clamp(22px, 3vw, 32px);
	font-size: clamp(26px, 3vw, 34px);
	line-height: 1.2;
	letter-spacing: -0.3px;
	color: #0C0C0C;
}

#package-sections-mount .lux-package-below .dt-procedure-steps .dt-procedure-step {
	border-radius: 22px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

#package-sections-mount .lux-package-logistics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

#package-sections-mount .lux-package-logistics__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 22px 20px;
	border-radius: 22px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

#package-sections-mount .lux-package-logistics__icon {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(201, 168, 76, 0.16);
	color: #A88635;
	font-size: 16px;
}

#package-sections-mount .lux-package-logistics__item h3 {
	margin: 0 0 8px;
	font-size: 17px;
	color: #0C0C0C;
}

#package-sections-mount .lux-package-logistics__item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #64748b;
}

/* FAQ ispod paketa */
#package-sections-mount .lux-package-faq {
	max-width: 920px;
}

#package-sections-mount .lux-package-faq .accordion-item {
	margin-bottom: 14px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
	overflow: hidden;
}

#package-sections-mount .lux-package-faq .accordion-item:last-child {
	margin-bottom: 0;
}

#package-sections-mount .lux-package-faq .accordion-header .accordion-button {
	font-size: clamp(16px, 1.3vw, 18px);
	padding: 18px 52px 18px 20px;
	background: transparent;
	color: #0C0C0C;
	box-shadow: none;
}

#package-sections-mount .lux-package-faq .accordion-button:not(.collapsed) {
	background: transparent;
	color: #0C0C0C;
	border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

#package-sections-mount .lux-package-faq .accordion-header .accordion-button.collapsed {
	background: transparent;
	color: #0C0C0C;
}

#package-sections-mount .lux-package-faq .accordion-body {
	padding: 16px 20px 20px;
	background: transparent;
}

#package-sections-mount .lux-package-faq .accordion-body p {
	margin: 0;
	color: #64748b;
	line-height: 1.7;
	font-size: 15px;
}

/* Zašto mi ispod paketa */
#package-sections-mount .lux-package-below__title--tight {
	margin-bottom: 0;
	max-width: 18em;
}

#package-sections-mount .lux-package-why__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: clamp(22px, 3vw, 32px);
}

#package-sections-mount .lux-package-why__link {
	flex: 0 0 auto;
	white-space: nowrap;
}

#package-sections-mount .lux-package-why {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 22px;
}

#package-sections-mount .lux-package-why__card {
	padding: 22px 20px;
	border-radius: 22px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

#package-sections-mount .lux-package-why__icon {
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#package-sections-mount .lux-package-why__icon img {
	max-width: 48px;
	max-height: 48px;
}

#package-sections-mount .lux-package-why__card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	color: #0C0C0C;
}

#package-sections-mount .lux-package-why__card > p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #64748b;
}

#package-sections-mount .excellence-contact-icons {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 4px;
}

#package-sections-mount .excellence-contact-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#package-sections-mount .excellence-contact-icon:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 22px rgba(15, 23, 42, 0.22);
}

#package-sections-mount .excellence-contact-icon.phone {
	background: #0C0C0C;
}

#package-sections-mount .excellence-contact-icon.viber {
	background: #7360f2;
}

#package-sections-mount .excellence-contact-icon.whatsapp {
	background: #25d366;
}

#package-sections-mount .lux-package-why__map {
	position: relative;
	width: 100%;
	height: 320px;
	margin-top: 4px;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, 0.22);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
	background: #e2e8f0;
	isolation: isolate;
}

#package-sections-mount .lux-package-why__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	max-width: none;
}

@media (max-width: 991px) {
	#package-sections-mount .lux-package-logistics,
	#package-sections-mount .lux-package-why {
		grid-template-columns: 1fr;
	}

	#package-sections-mount .lux-package-why__head {
		flex-direction: column;
		align-items: flex-start;
	}

	#package-sections-mount .lux-package-why__map {
		height: 260px;
		border-radius: 18px;
		margin-top: 8px;
	}

	#package-sections-mount .lux-package-below__block--why {
		margin-bottom: clamp(28px, 6vw, 48px);
	}
}

@media (max-width: 575px) {
	#package-sections-mount .lux-package-why__map {
		height: 240px;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

/* Modern CTA ispod paketa */
.lux-package-cta {
	padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 7vw, 88px);
}

.lux-package-cta--mid {
	padding: clamp(12px, 2vw, 28px) 0 clamp(40px, 5vw, 64px);
}

#package-sections-mount .lux-package-below--more {
	padding-top: 0;
}

#package-sections-mount .lux-package-below--more .lux-package-below__block:last-child {
	margin-bottom: clamp(40px, 5vw, 64px);
}

.lux-package-cta__panel {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border-radius: 28px;
	padding: clamp(32px, 4.5vw, 52px);
	background:
		radial-gradient(circle at 88% 18%, rgba(201, 168, 76, 0.28), transparent 42%),
		radial-gradient(circle at 12% 88%, rgba(201, 168, 76, 0.12), transparent 44%),
		linear-gradient(145deg, #0C0C0C 0%, #1a1a1a 55%, #2a2418 100%);
	box-shadow: 0 24px 48px rgba(12, 12, 12, 0.28);
}

.lux-package-cta__glow {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
}

.lux-package-cta__panel > .row {
	position: relative;
	z-index: 1;
}

.lux-package-cta__eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #C9A84C;
}

.lux-package-cta__title {
	margin: 0 0 14px;
	font-size: clamp(26px, 3.4vw, 40px);
	line-height: 1.18;
	letter-spacing: -0.4px;
	color: #fff;
}

.lux-package-cta__text {
	margin: 0;
	max-width: 34em;
	font-size: clamp(15px, 1.15vw, 17px);
	line-height: 1.7;
	color: rgba(248, 250, 252, 0.78);
}

.lux-package-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}

.lux-package-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 14px 22px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lux-package-cta__btn:hover {
	transform: translateY(-2px);
}

.lux-package-cta__btn--primary {
	background: #C9A84C;
	color: #0C0C0C;
}

.lux-package-cta__btn--primary:hover {
	background: #ddc06a;
	color: #0C0C0C;
}

.lux-package-cta__btn--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.lux-package-cta__btn--ghost:hover {
	border-color: rgba(201, 168, 76, 0.7);
	color: #C9A84C;
}

.lux-package-cta__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 4px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(248, 250, 252, 0.72);
	text-decoration: none;
	transition: color 0.2s ease;
}

.lux-package-cta__phone:hover {
	color: #C9A84C;
}

.lux-package-cta__phone i {
	font-size: 13px;
}

@media (max-width: 991px) {
	.lux-package-cta__actions {
		margin-top: 8px;
	}
}

.package-appointment-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

