/* =================================================================
   Azure Trails Andaman — main stylesheet
   Design system + components. Variables overridable via Customizer.
   ================================================================= */

:root {
	/* Brand (overridden inline by Customizer) */
	--az-primary: #0e6ba8;
	--az-accent: #0fb9b1;
	--az-coral: #ff7a59;

	/* Derived / neutrals */
	--az-deep: #062a40;
	--az-ink: #0c2231;
	--az-body: #43586a;
	--az-muted: #7a8b9d;
	--az-line: #e4ecf1;
	--az-bg: #ffffff;
	--az-bg-alt: #f3f9fb;
	--az-bg-tint: #eaf5f8;
	--az-white: #ffffff;

	/* Typography */
	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	/* Shape & motion */
	--radius-sm: 10px;
	--radius: 18px;
	--radius-lg: 28px;
	--radius-pill: 999px;
	--shadow-sm: 0 2px 8px rgba(6, 42, 64, .06);
	--shadow: 0 18px 40px -18px rgba(6, 42, 64, .28);
	--shadow-lg: 0 40px 80px -30px rgba(6, 42, 64, .4);
	--ease: cubic-bezier(.22, 1, .36, 1);
	--container: 1240px;
	--gutter: clamp(20px, 5vw, 56px);
}

/* Widen the layout on large monitors so content anchors nearer the edges
   instead of floating in a narrow centred column. */
@media (min-width: 1500px) {
	:root { --container: 1440px; }
}
@media (min-width: 1800px) {
	:root { --container: 1600px; }
}

/* ---------- Reset-ish base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--az-body);
	background: var(--az-bg);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--az-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--az-accent); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--az-ink);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -.015em;
	margin: 0 0 .4em;
}

p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

::selection { background: var(--az-accent); color: #fff; }

:focus-visible {
	outline: 3px solid var(--az-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ---------- Layout ---------- */
.az-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-inline: var(--gutter);
}

.site-main { display: block; }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--alt { background: var(--az-bg-alt); }

.section__head { margin-bottom: clamp(36px, 5vw, 64px); }
.section__head--center { text-align: center; max-width: 720px; margin-inline: auto; }
.section__head:not(.section__head--center) {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px 40px;
}
.section__head:not(.section__head--center) .section__lead { max-width: 420px; margin-bottom: 0; }

.section__title {
	font-size: clamp(1.9rem, 4vw, 3.05rem);
	margin-bottom: .2em;
}
.section__lead {
	font-size: clamp(1.02rem, 1.6vw, 1.18rem);
	color: var(--az-body);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--az-primary);
	margin-bottom: 14px;
}
.eyebrow .az-icon { width: 17px; height: 17px; }
.eyebrow--light { color: #bfeef0; }

/* ---------- Buttons ---------- */
.btn {
	--btn-bg: var(--az-primary);
	--btn-fg: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: .98rem;
	line-height: 1;
	padding: 15px 26px;
	border-radius: var(--radius-pill);
	border: 1.5px solid transparent;
	background: var(--btn-bg);
	color: var(--btn-fg);
	cursor: pointer;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); box-shadow: var(--shadow); }
.btn .az-icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .az-icon { transform: translateX(3px); }
.btn--primary { --btn-bg: var(--az-primary); }
.btn--coral { --btn-bg: var(--az-coral); box-shadow: 0 14px 30px -12px rgba(255, 122, 89, .7); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--az-ink);
	border-color: var(--az-line);
}
.btn--ghost:hover { background: var(--az-bg-tint); box-shadow: none; }
.btn--glass {
	--btn-bg: rgba(255, 255, 255, .14);
	--btn-fg: #fff;
	border-color: rgba(255, 255, 255, .45);
	backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .26); }
.btn--phone .az-icon { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
	padding: 18px 0;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, .9);
	backdrop-filter: saturate(160%) blur(14px);
	box-shadow: var(--shadow-sm);
	padding: 11px 0;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
/* Logo image (Site Identity) shown beside the brand text */
.brand__logo {
	height: 56px; width: auto; display: block; flex: none;
	border-radius: 50%; /* clip the source image's square corners to a clean circle */
	box-shadow: 0 4px 14px rgba(6, 42, 64, .18);
	transition: height .3s var(--ease);
}
.site-header.is-scrolled .brand__logo { height: 48px; }
@media (max-width: 600px) { .brand__logo, .site-header.is-scrolled .brand__logo { height: 44px; } }
.site-header.is-scrolled .brand,
.site-header.is-scrolled .site-nav__menu > li > a,
.site-header.is-scrolled .btn--phone { color: var(--az-ink); }
.brand .az-icon { width: 34px; height: 34px; color: var(--az-accent); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -.02em; white-space: nowrap; }
.brand__tag { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; opacity: .8; white-space: nowrap; }
.site-branding { flex: none; }

.site-nav { margin-inline-start: auto; }
.site-nav__menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.site-nav__menu > li > a {
	display: block;
	padding: 10px 14px;
	color: #fff;
	font-weight: 600;
	font-size: .96rem;
	border-radius: var(--radius-pill);
	transition: background .2s var(--ease), color .2s var(--ease);
}
.site-nav__menu > li > a:hover { background: rgba(255, 255, 255, .16); }
.site-header.is-scrolled .site-nav__menu > li > a:hover { background: var(--az-bg-tint); color: var(--az-primary); }

/* sub-menus */
.site-nav__menu li { position: relative; }
.site-nav__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 8px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .22s var(--ease);
}
.site-nav__menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(6px); }
.site-nav__menu .sub-menu a { display: block; padding: 9px 14px; border-radius: 10px; color: var(--az-ink); font-weight: 500; }
.site-nav__menu .sub-menu a:hover { background: var(--az-bg-tint); }

.site-header__actions { display: flex; align-items: center; gap: 10px; }

/* Phone button: at the top of the page the header is transparent over a
   photo, so give the pill a dark glass backing to keep the number legible
   over bright areas. Once the header turns solid (scrolled), switch to a
   light ghost style with dark text. */
.site-header .btn--phone {
	color: #fff;
	background: rgba(6, 42, 64, .32);
	border-color: rgba(255, 255, 255, .55);
	backdrop-filter: blur(8px);
}
.site-header .btn--phone:hover { background: rgba(6, 42, 64, .5); box-shadow: none; }
.site-header.is-scrolled .btn--phone {
	color: var(--az-ink);
	background: transparent;
	border-color: var(--az-line);
	backdrop-filter: none;
}
.site-header.is-scrolled .btn--phone:hover { background: var(--az-bg-tint); }

/* nav toggle (mobile) */
.nav-toggle {
	display: none;
	width: 46px; height: 46px;
	border: 0; background: rgba(255, 255, 255, .16);
	border-radius: 12px;
	position: relative; cursor: pointer;
}
.site-header.is-scrolled .nav-toggle { background: var(--az-bg-tint); }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
	content: ""; position: absolute; left: 50%; width: 20px; height: 2px;
	background: #fff; border-radius: 2px; transition: .25s var(--ease);
	transform: translateX(-50%);
}
.site-header.is-scrolled .nav-toggle__bar,
.site-header.is-scrolled .nav-toggle__bar::before,
.site-header.is-scrolled .nav-toggle__bar::after { background: var(--az-ink); }
.nav-toggle__bar { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { top: 0; transform: translateX(-50%) rotate(45deg); background: var(--az-ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { top: 0; transform: translateX(-50%) rotate(-45deg); background: var(--az-ink); }

/* mobile nav panel */
.mobile-nav {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(360px, 86vw);
	background: #fff;
	z-index: 99;
	padding: 100px 28px 32px;
	box-shadow: var(--shadow-lg);
	transform: translateX(100%);
	visibility: hidden;
	transition: transform .35s var(--ease), visibility .35s var(--ease);
	overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__menu { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.mobile-nav__menu a {
	display: block; padding: 13px 14px; border-radius: 12px;
	font-weight: 600; font-size: 1.08rem; color: var(--az-ink);
}
.mobile-nav__menu a:hover { background: var(--az-bg-tint); }
.mobile-nav__menu .sub-menu { list-style: none; padding-left: 14px; }
.mobile-nav__actions { display: flex; flex-direction: column; gap: 10px; }

.nav-backdrop {
	position: fixed; inset: 0; background: rgba(6, 42, 64, .5);
	z-index: 98; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
	backdrop-filter: blur(2px);
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}
.hero__bg {
	position: absolute; inset: 0;
	background-color: var(--az-deep);
	background-size: cover; background-position: center;
	transform: scale(1.08);
	animation: hero-zoom 18s ease-out forwards;
}
.hero__video {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
	background-color: var(--az-deep);
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(6, 42, 64, .55) 0%, rgba(6, 42, 64, .25) 40%, rgba(6, 42, 64, .8) 100%),
		radial-gradient(120% 90% at 15% 20%, rgba(15, 185, 177, .35), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.hero__content { max-width: 820px; }
.hero__title {
	color: #fff;
	font-size: clamp(2.5rem, 6.4vw, 4.7rem);
	line-height: 1.04;
	margin-bottom: .35em;
	text-wrap: balance;
}
.hero__subtitle {
	font-size: clamp(1.08rem, 2vw, 1.4rem);
	color: rgba(255, 255, 255, .92);
	max-width: 580px;
	margin-bottom: 2.2em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 3rem; }

.hero__stats {
	display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 60px);
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, .25);
	padding-top: 26px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; }
.hero__stats span { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }

.hero__scroll {
	position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
	width: 26px; height: 44px; border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 14px; z-index: 2;
}
.hero__scroll span {
	position: absolute; top: 8px; left: 50%; width: 4px; height: 8px;
	background: #fff; border-radius: 2px; transform: translateX(-50%);
	animation: scroll-bob 1.8s infinite;
}
@keyframes scroll-bob { 0%, 100% { opacity: 0; top: 8px; } 50% { opacity: 1; top: 18px; } }

/* ---------- Features ---------- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
}
.feature-card {
	background: #fff;
	border: 1px solid var(--az-line);
	border-radius: var(--radius);
	padding: 34px 28px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 58px; height: 58px; border-radius: 16px;
	background: linear-gradient(135deg, var(--az-primary), var(--az-accent));
	color: #fff; margin-bottom: 20px;
}
.feature-card__icon .az-icon { width: 28px; height: 28px; }
.feature-card__title { font-size: 1.22rem; margin-bottom: .4em; }
.feature-card__desc { font-size: .98rem; margin: 0; }

/* ---------- Card grid (destinations / archives) ---------- */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}
/* 4-up package teaser on the homepage; collapses responsively. */
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid--4 { grid-template-columns: 1fr; } }
.pkg-card__price { margin: 4px 0 2px; color: var(--az-ink); }
.pkg-card__price strong { font-size: 1.25rem; color: var(--az-coral); }
.pkg-card__price span { font-size: .82rem; color: var(--az-muted); margin-left: 4px; }
.section__cta { text-align: center; margin-top: 36px; }

/* Highlighted (featured) package card on the homepage teaser. */
.dest-card--featured {
	position: relative;
	border: 2px solid var(--az-coral);
	box-shadow: 0 22px 46px -22px rgba(255, 122, 89, .65);
}
.dest-card__ribbon {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--az-coral);
	color: #fff;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .02em;
	box-shadow: 0 8px 18px -8px rgba(255, 122, 89, .8);
}
.dest-card__ribbon .az-icon { width: 15px; height: 15px; }
.dest-card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.dest-card__link { display: block; color: inherit; }
.dest-card__media {
	aspect-ratio: 4 / 3.4;
	background-color: var(--az-bg-tint); /* fallback if image is slow/missing */
	background-size: cover; background-position: center;
	transition: transform .6s var(--ease);
}
.dest-card:hover .dest-card__media { transform: scale(1.07); }
.dest-card__body { padding: 24px 24px 28px; }
.dest-card__meta { font-size: .8rem; color: var(--az-primary); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.dest-card__title { font-size: 1.4rem; margin: .25em 0 .35em; }
.dest-card__desc { font-size: .96rem; color: var(--az-body); margin-bottom: 1em; }
.dest-card__more {
	display: inline-flex; align-items: center; gap: 7px;
	font-weight: 700; color: var(--az-primary); font-size: .92rem;
}
.dest-card__more .az-icon { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.dest-card:hover .dest-card__more .az-icon { transform: translateX(4px); }

/* ---------- Horizontal slider (destinations) ---------- */
.section__head--slider { align-items: center; }
.slider-nav { display: flex; gap: 12px; flex: none; }
.slider-nav__btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; border-radius: 50%;
	background: #fff; border: 1.5px solid var(--az-line); color: var(--az-ink);
	cursor: pointer;
	transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), opacity .2s var(--ease);
}
.slider-nav__btn:hover { background: var(--az-primary); border-color: var(--az-primary); color: #fff; transform: translateY(-2px); }
.slider-nav__btn .az-icon { width: 22px; height: 22px; }
.slider-nav__btn--prev .az-icon { transform: rotate(180deg); }
.slider-nav__btn:disabled { opacity: .35; cursor: default; pointer-events: none; }

.slider-track {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 12px 0 30px;
	scrollbar-width: none;            /* Firefox */
	-ms-overflow-style: none;         /* IE/Edge */
}
.slider-track::-webkit-scrollbar { display: none; } /* WebKit */
.slider-track .slide {
	flex: 0 0 clamp(262px, 31%, 360px);
	scroll-snap-align: start;
}
/* Phones: one card per view with a slim, intentional peek (avoids a wide
   half-cut card that reads as broken). */
@media (max-width: 640px) {
	.slider-track { gap: 16px; }
	.slider-track .slide { flex-basis: 86%; }
	.exp-tile { aspect-ratio: 4 / 3; }
}

/* Touch devices: auto-reveal the centred destination card's description
   (matches the Experiences behaviour — pops up one by one as you swipe). */
@media (hover: none) {
	.slider-track { align-items: flex-start; }
	.slider-track .dest-card__desc {
		max-height: 0; opacity: 0; overflow: hidden; margin-bottom: 0;
		transition: max-height .4s var(--ease), opacity .35s var(--ease), margin .35s var(--ease);
	}
	.slider-track .dest-card.is-active .dest-card__desc {
		max-height: 160px; opacity: 1; margin-bottom: 1em;
	}
	.slider-track .dest-card.is-active { box-shadow: var(--shadow); }
}

/* ---------- Customize ---------- */
.customize {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 6vw, 80px);
	align-items: center;
}
.customize__media { position: relative; }
.customize__img {
	aspect-ratio: 4 / 4.4;
	border-radius: var(--radius-lg);
	background-color: var(--az-bg-tint);
	background-size: cover; background-position: center;
	box-shadow: var(--shadow);
}
.customize__badge {
	position: absolute; bottom: 26px; left: -18px;
	display: flex; align-items: center; gap: 10px;
	background: #fff; padding: 14px 20px; border-radius: var(--radius-pill);
	box-shadow: var(--shadow); font-weight: 700; color: var(--az-ink); font-size: .92rem;
}
.customize__badge .az-icon { width: 22px; height: 22px; color: #fff; background: var(--az-accent); border-radius: 50%; padding: 3px; }

.customize__steps { list-style: none; margin: 30px 0 34px; display: flex; flex-direction: column; gap: 22px; }
.customize__step { display: flex; gap: 18px; }
.customize__step h3 { font-size: 1.18rem; margin-bottom: .2em; }
.customize__step p { margin: 0; font-size: .98rem; }
.customize__step-icon {
	flex: none;
	display: inline-flex; align-items: center; justify-content: center;
	width: 50px; height: 50px; border-radius: 14px;
	background: var(--az-bg-tint); color: var(--az-primary);
}
.customize__step-icon .az-icon { width: 24px; height: 24px; }

/* ---------- Ferry ---------- */
.section--ferry {
	background:
		radial-gradient(80% 120% at 100% 0%, rgba(15, 185, 177, .12), transparent 60%),
		var(--az-bg);
}
.ferry-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 26px;
	max-width: 1100px;
	margin: 0 auto;
}
.ferry-card {
	background: #fff;
	border: 1px solid var(--az-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ferry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ferry-card:hover .ferry-card__media { transform: scale(1.05); }
.ferry-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background-color: var(--az-bg-tint);
	background-size: cover; background-position: center;
	transition: transform .6s var(--ease);
}
.ferry-card__badge {
	position: absolute; top: 14px; left: 14px;
	background: var(--az-coral); color: #fff;
	font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	padding: 6px 12px; border-radius: var(--radius-pill);
	box-shadow: var(--shadow-sm);
}
.ferry-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.ferry-card__name { font-size: 1.45rem; margin: 0 0 .35em; }
.ferry-card__desc { font-size: .96rem; margin-bottom: 18px; flex: 1; }
.ferry-card__tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.ferry-card__tags li {
	font-size: .8rem; font-weight: 600; color: var(--az-primary);
	background: var(--az-bg-tint); padding: 6px 13px; border-radius: var(--radius-pill);
}
.ferry-note {
	display: flex; align-items: center; justify-content: center; gap: 10px;
	margin: 38px auto 0; text-align: center; font-weight: 600; color: var(--az-ink);
}
.ferry-note .az-icon { width: 22px; height: 22px; color: #fff; background: var(--az-accent); border-radius: 50%; padding: 3px; flex: none; }

/* ---------- Packages ---------- */
.section--packages {
	background:
		radial-gradient(70% 90% at 0% 100%, rgba(14, 107, 168, .08), transparent 60%),
		radial-gradient(60% 80% at 100% 0%, rgba(15, 185, 177, .1), transparent 55%),
		var(--az-bg);
}

.pkg {
	display: grid;
	grid-template-columns: 1.65fr 1fr;
	grid-template-areas:
		"main aside"
		"lists lists";
	gap: clamp(28px, 4vw, 48px);
	background: #fff;
	border: 1px solid var(--az-line);
	border-radius: var(--radius-lg);
	padding: clamp(26px, 4vw, 52px);
	box-shadow: var(--shadow);
}
.pkg__main { grid-area: main; min-width: 0; }
.pkg__aside { grid-area: aside; }
.pkg__lists { grid-area: lists; }

/* Header */
.pkg__ribbon {
	display: inline-flex; align-items: center; gap: 7px;
	background: linear-gradient(135deg, var(--az-primary), var(--az-accent));
	color: #fff;
	font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	padding: 7px 15px; border-radius: var(--radius-pill);
	margin-bottom: 16px;
	box-shadow: 0 8px 20px -8px rgba(14, 107, 168, .55);
}
.pkg__ribbon .az-icon { width: 14px; height: 14px; color: #ffce5c; }
.pkg__title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .15em; }
.pkg__subtitle { font-size: 1.05rem; color: var(--az-body); margin-bottom: 22px; }

/* Complimentary offer cards — a headline selling point: two photo cards
   side by side with the picture doing the talking. */
.pkg__freebies {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-bottom: 30px;
}
.pkg__freebie {
	display: flex; flex-direction: column;
	background: var(--az-bg-tint);
	border: 1.5px dashed var(--az-accent);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pkg__freebie:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pkg__freebie:hover .az-cover { transform: scale(1.05); }
.pkg__freebie-media {
	position: relative; overflow: hidden; display: block;
	aspect-ratio: 16 / 7.5;
	background-color: var(--az-bg-tint);
}
.pkg__freebie-media .az-cover { transition: transform .6s var(--ease); }
.pkg__freebie-body {
	display: flex; align-items: center; gap: 13px;
	padding: 14px 18px 16px;
	flex: 1;
}
.pkg__freebie-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 13px; flex: none;
	background: linear-gradient(135deg, var(--az-accent), var(--az-primary));
	color: #fff;
}
.pkg__freebie-icon .az-icon { width: 24px; height: 24px; }
.pkg__freebie-text { display: flex; flex-direction: column; line-height: 1.4; min-width: 0; }
.pkg__freebie-text strong { font-size: 1.04rem; color: var(--az-ink); }
.pkg__freebie-text em { font-style: normal; font-size: .88rem; color: var(--az-body); }

/* Itinerary */
.pkg__itinerary-label {
	font-family: var(--font-body);
	font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: var(--az-primary); margin-bottom: 14px;
}
.pkg__days {
	display: flex; gap: 8px; flex-wrap: nowrap;
	overflow-x: auto;
	/* Top/side padding so tab borders, hover lift and the active tab's
	   shadow aren't clipped by this scroll container. */
	padding: 5px 3px 10px;
	margin-bottom: 18px;
	scrollbar-width: none;
}
.pkg__days::-webkit-scrollbar { display: none; }
.pkg__day-tab {
	flex: none;
	display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
	max-width: 168px;
	padding: 10px 16px;
	background: var(--az-bg-alt);
	border: 1.5px solid var(--az-line);
	border-radius: 14px;
	font-family: var(--font-body);
	cursor: pointer;
	text-align: left;
	transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pkg__day-tab:hover { border-color: var(--az-accent); transform: translateY(-2px); }
.pkg__day-tab.is-active {
	background: linear-gradient(135deg, var(--az-primary), #0a5586);
	border-color: transparent;
	box-shadow: 0 12px 26px -12px rgba(14, 107, 168, .65);
}
.pkg__day-num { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--az-primary); }
.pkg__day-name {
	font-size: .86rem; font-weight: 600; color: var(--az-ink);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.pkg__day-tab.is-active .pkg__day-num { color: #9be3de; }
.pkg__day-tab.is-active .pkg__day-name { color: #fff; }

.pkg__day-panel[hidden] { display: none; }
.pkg__day-panel {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 24px;
	align-items: center;
	background: var(--az-bg-alt);
	border-radius: var(--radius);
	padding: 20px;
	animation: pkg-panel-in .45s var(--ease);
}
@keyframes pkg-panel-in {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: none; }
}
.pkg__day-media {
	position: relative; overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-sm);
	background-color: var(--az-bg-tint);
	box-shadow: var(--shadow-sm);
}
.pkg__day-badge {
	position: absolute; top: 12px; left: 12px; z-index: 1;
	background: var(--az-coral); color: #fff;
	font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	padding: 5px 12px; border-radius: var(--radius-pill);
	box-shadow: var(--shadow-sm);
}
.pkg__day-title { font-size: 1.3rem; margin-bottom: .5em; }
.pkg__day-items { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pkg__day-items li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: .95rem; color: var(--az-body);
}
.pkg__day-items .az-icon {
	width: 18px; height: 18px; flex: none; margin-top: 3px;
	color: #fff; background: var(--az-accent); border-radius: 50%; padding: 3px;
}

/* Highlights strip */
.pkg__highlights {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 26px;
	padding-top: 26px;
	border-top: 1px solid var(--az-line);
}
.pkg__highlight {
	display: flex; flex-direction: column; align-items: center; gap: 9px;
	text-align: center;
	font-size: .8rem; font-weight: 600; color: var(--az-ink); line-height: 1.3;
	padding: 14px 8px;
	border-radius: var(--radius-sm);
	transition: background .25s var(--ease), transform .25s var(--ease);
}
.pkg__highlight:hover { background: var(--az-bg-tint); transform: translateY(-3px); }
.pkg__highlight-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 14px;
	background: var(--az-bg-tint); color: var(--az-primary);
}
.pkg__highlight:hover .pkg__highlight-icon { background: #fff; }
.pkg__highlight-icon .az-icon { width: 23px; height: 23px; }

/* Price card */
.pkg__price-card {
	position: sticky; top: 96px;
	display: flex; flex-direction: column;
	background:
		radial-gradient(120% 100% at 100% 0%, rgba(15, 185, 177, .35), transparent 55%),
		linear-gradient(160deg, #0a4d79, var(--az-deep));
	color: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(26px, 3vw, 38px);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.pkg__price-label {
	font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
	color: #9be3de; margin-bottom: 8px;
}
.pkg__price-total {
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 4.5vw, 3.4rem);
	font-weight: 600; line-height: 1;
	color: #ffce5c;
	letter-spacing: -.01em;
}
.pkg__price-total small { font-size: .45em; font-weight: 500; opacity: .85; }
.pkg__price-person { margin-top: 10px; font-size: .98rem; color: rgba(255, 255, 255, .85); }
.pkg__price-person strong { color: #fff; font-size: 1.15rem; }

.pkg__meta {
	list-style: none;
	display: flex; gap: 8px;
	margin: 22px 0 24px;
}
.pkg__meta li {
	flex: 1;
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--radius-sm);
	padding: 12px 6px;
	font-size: .8rem; font-weight: 600; text-align: center;
}
.pkg__meta .az-icon { width: 20px; height: 20px; color: #9be3de; }

.pkg__price-card .btn + .btn { margin-top: 10px; }
.pkg__slots {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	margin: 18px 0 0; font-size: .86rem; font-weight: 700; color: #ffce5c;
}
.pkg__slots .az-icon { width: 17px; height: 17px; flex: none; }

/* Includes / excludes */
.pkg__lists {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 22px;
	padding-top: clamp(8px, 1vw, 14px);
	border-top: 1px solid var(--az-line);
}
.pkg-list {
	border-radius: var(--radius);
	padding: 24px 26px;
}
.pkg-list--in { background: rgba(15, 185, 177, .08); }
.pkg-list--ex { background: rgba(255, 122, 89, .08); }
.pkg-list__title {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--font-body);
	font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	margin-bottom: 16px;
}
.pkg-list--in .pkg-list__title { color: #0a7a74; }
.pkg-list--ex .pkg-list__title { color: #c0492c; }
.pkg-list__title .az-icon { width: 20px; height: 20px; color: #fff; border-radius: 50%; padding: 4px; flex: none; }
.pkg-list--in .pkg-list__title .az-icon { background: var(--az-accent); }
.pkg-list--ex .pkg-list__title .az-icon { background: var(--az-coral); }
.pkg-list__items {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 9px 20px;
}
.pkg-list__items li {
	display: flex; align-items: flex-start; gap: 9px;
	font-size: .92rem; color: var(--az-ink);
}
.pkg-list__items .az-icon { width: 16px; height: 16px; flex: none; margin-top: 4px; }
.pkg-list--in .pkg-list__items .az-icon { color: #0a7a74; }
.pkg-list--ex .pkg-list__items .az-icon { color: #c0492c; }

/* More packages (CPT cards) */
.pkg-more { margin-top: clamp(40px, 6vw, 64px); }
.pkg-more__title { font-size: 1.6rem; margin-bottom: 24px; }

/* Link from the price card to the package's own page */
.pkg__details-link {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	margin-top: 14px;
	color: #9be3de; font-weight: 700; font-size: .92rem;
}
.pkg__details-link:hover { color: #fff; }
.pkg__details-link .az-icon { width: 16px; height: 16px; }

/* Single package page: designed itinerary timeline */
.pkg-single__lead { font-size: 1.12rem; line-height: 1.75; color: var(--az-body); margin-bottom: 2em; }
.pkg-single__heading { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 1em; }
.pkg-single__note {
	margin-top: 34px;
	padding: 22px 26px;
	background: var(--az-bg-tint);
	border-left: 4px solid var(--az-accent);
	border-radius: var(--radius-sm);
	font-size: .98rem;
}

.pkg-timeline { display: flex; flex-direction: column; }
.pkg-timeline__row {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 16px;
}
.pkg-timeline__marker {
	position: relative;
	display: flex;
	justify-content: center;
}
.pkg-timeline__marker::before {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	width: 2px;
	background: var(--az-line);
}
.pkg-timeline__row:first-child .pkg-timeline__marker::before { top: 12px; }
.pkg-timeline__row:last-child .pkg-timeline__marker::before { bottom: calc(100% - 12px); }
.pkg-timeline__num {
	position: relative; z-index: 1;
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; margin-top: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--az-primary), var(--az-accent));
	color: #fff;
	font-weight: 800; font-size: .95rem;
	box-shadow: 0 8px 18px -8px rgba(14, 107, 168, .7);
}
.pkg-timeline__card {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 22px;
	align-items: center;
	background: var(--az-bg-alt);
	border-radius: var(--radius);
	padding: 20px;
	margin-bottom: 22px;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pkg-timeline__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pkg-timeline__row:last-child .pkg-timeline__card { margin-bottom: 0; }

.pkg__lists--single { margin-top: 44px; border-top: 0; padding-top: 0; grid-template-columns: 1fr; }

@media (max-width: 640px) {
	.pkg-timeline__row { grid-template-columns: 36px 1fr; gap: 10px; }
	.pkg-timeline__num { width: 32px; height: 32px; font-size: .82rem; }
	.pkg-timeline__card { grid-template-columns: 1fr; gap: 14px; }
}

/* Single package page: content + sticky booking card */
.pkg-single {
	display: grid;
	grid-template-columns: 1.7fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: start;
	padding: clamp(48px, 7vw, 90px) 0;
}
.pkg-single__aside { position: sticky; top: 96px; }
.pkg-single__content > :first-child { margin-top: 0; }
@media (max-width: 980px) {
	.pkg-single { grid-template-columns: 1fr; }
	.pkg-single__aside { position: static; }
}

/* ---------- Experiences ---------- */
.exp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 22px;
}
.exp-tile {
	position: relative;
	aspect-ratio: 4 / 3.2;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background-color: var(--az-deep); /* dark fallback keeps white label readable */
	background-size: cover; background-position: center;
	display: flex; align-items: flex-end;
	box-shadow: var(--shadow-sm);
	isolation: isolate;
}
.exp-tile::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, transparent 30%, rgba(6, 42, 64, .9) 100%);
	transition: background .35s var(--ease);
}
.exp-tile:hover,
.exp-tile.is-active { transform: translateY(-6px); }
.exp-tile { transition: transform .35s var(--ease); }
.exp-tile.is-active::after { background: linear-gradient(180deg, rgba(6, 42, 64, .15) 0%, rgba(6, 42, 64, .92) 100%); }
.exp-tile__body { position: relative; z-index: 2; padding: 26px; color: #fff; }
.exp-tile__title { color: #fff; font-size: 1.4rem; margin-bottom: .2em; }
.exp-tile__desc {
	margin: 0; font-size: .94rem; color: rgba(255, 255, 255, .9);
	max-height: 0; opacity: 0; overflow: hidden;
	transition: max-height .4s var(--ease), opacity .35s var(--ease), margin .35s var(--ease);
}
.exp-tile:hover .exp-tile__desc,
.exp-tile.is-active .exp-tile__desc { max-height: 120px; opacity: 1; margin-top: .3em; }
/* Full-tile stretched link (keeps the image/gradient stacking intact). */
.exp-tile__overlay { position: absolute; inset: 0; z-index: 3; }

/* ---------- Testimonials ---------- */
.section--testimonials {
	background:
		radial-gradient(90% 120% at 0% 0%, rgba(14, 107, 168, .9), rgba(6, 42, 64, .96)),
		var(--az-deep);
	color: #fff;
}
.section--testimonials .section__title { color: #fff; }
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 24px;
}
.testimonial {
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: var(--radius-lg);
	padding: 32px 30px;
	margin: 0;
	backdrop-filter: blur(6px);
	transition: transform .3s var(--ease), background .3s var(--ease);
}
.testimonial:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .11); }
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 16px; color: #ffce5c; }
.testimonial__stars .az-icon { width: 19px; height: 19px; }
.testimonial__quote { font-size: 1.08rem; line-height: 1.6; color: rgba(255, 255, 255, .95); margin-bottom: 22px; }
.testimonial__by { display: flex; flex-direction: column; }
.testimonial__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.testimonial__type { font-size: .85rem; color: #bfeef0; }

/* ---------- Contact ---------- */
.section--contact { background: var(--az-bg-alt); }
.contact {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(36px, 5vw, 70px);
	align-items: start;
}
.expert-card {
	display: flex; align-items: center; gap: 16px;
	background: #fff; border: 1px solid var(--az-line);
	border-radius: var(--radius); padding: 16px 20px; margin: 26px 0;
	box-shadow: var(--shadow-sm);
}
.expert-card__avatar {
	width: 120px; height: 120px; border-radius: 50%; flex: none;
	background-color: var(--az-bg-tint);
	background-size: cover; background-position: center;
}
.expert-card__name { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--az-ink); margin-bottom: 2px; }
.expert-card__role { font-size: .98rem; color: var(--az-body); }

.contact__methods { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.contact__methods a { display: flex; align-items: center; gap: 14px; padding: 12px 0; color: var(--az-ink); font-weight: 600; }
.contact__methods a:hover { color: var(--az-primary); }
.contact__method-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 12px; flex: none;
	background: var(--az-bg-tint); color: var(--az-primary);
}
.contact__method-icon .az-icon { width: 22px; height: 22px; }

.contact__form-wrap {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(26px, 4vw, 44px);
	box-shadow: var(--shadow);
}
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.field__label { display: block; font-weight: 600; font-size: .9rem; color: var(--az-ink); margin-bottom: 7px; }
.field__req { color: var(--az-coral); font-weight: 700; }
.field input, .field textarea, .search-field {
	width: 100%;
	font-family: inherit; font-size: 1rem; color: var(--az-ink);
	padding: 13px 16px;
	border: 1.5px solid var(--az-line);
	border-radius: var(--radius-sm);
	background: var(--az-bg-alt);
	transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
	outline: none; border-color: var(--az-accent); background: #fff;
	box-shadow: 0 0 0 4px rgba(15, 185, 177, .14);
}
.field select {
	width: 100%;
	font-family: inherit; font-size: 1rem; color: var(--az-ink);
	padding: 13px 44px 13px 16px;
	border: 1.5px solid var(--az-line);
	border-radius: var(--radius-sm);
	background-color: var(--az-bg-alt);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230c2231' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 15px;
	-webkit-appearance: none; -moz-appearance: none; appearance: none;
	cursor: pointer;
	transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field select:focus {
	outline: none; border-color: var(--az-accent); background-color: #fff;
	box-shadow: 0 0 0 4px rgba(15, 185, 177, .14);
}
.field textarea { resize: vertical; }
.azure-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.enquiry-form__fineprint { font-size: .82rem; color: var(--az-muted); text-align: center; margin: 14px 0 0; }

.form-notice {
	display: flex; align-items: center; gap: 12px;
	padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 22px; font-weight: 600;
}
.form-notice p { margin: 0; }
.form-notice--success { background: rgba(15, 185, 177, .12); color: #0a7a74; }
.form-notice--success .az-icon { width: 24px; height: 24px; color: #fff; background: var(--az-accent); border-radius: 50%; padding: 3px; flex: none; }
.form-notice--error { background: rgba(255, 122, 89, .14); color: #c0492c; }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
	position: fixed; bottom: 24px; right: 24px; z-index: 90;
	width: 58px; height: 58px; border-radius: 50%;
	background: #25d366; color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .7);
	transition: transform .25s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }
.float-whatsapp .az-icon { width: 30px; height: 30px; }

/* ---------- Inner page banner ---------- */
.page-banner {
	position: relative;
	min-height: 46vh;
	display: flex; align-items: flex-end;
	background-color: var(--az-deep);
	background-size: cover; background-position: center;
	color: #fff;
	padding: 140px 0 50px;
}
.page-banner__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(6, 42, 64, .35), rgba(6, 42, 64, .82));
}
.page-banner__inner { position: relative; z-index: 2; }
.page-banner__title { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0; }
.page-banner__subtitle { color: rgba(255, 255, 255, .9); font-size: 1.1rem; margin: .4em 0 0; max-width: 560px; }

/* ---------- Single / page content ---------- */
.single-content { padding: clamp(48px, 7vw, 90px) var(--gutter); max-width: 820px; }
.entry-content > * { margin-bottom: 1.2em; }
.entry-content h2 { font-size: 1.9rem; margin-top: 1.4em; }
.entry-content h3 { font-size: 1.45rem; margin-top: 1.2em; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote {
	border-left: 4px solid var(--az-accent);
	padding: 6px 0 6px 22px; margin: 1.4em 0; font-style: italic; color: var(--az-ink);
}
.entry-content a { text-decoration: underline; text-decoration-color: rgba(14,107,168,.4); text-underline-offset: 3px; }

.single-cta {
	margin-top: 50px; padding: 40px; border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--az-bg-tint), #fff);
	border: 1px solid var(--az-line); text-align: center;
}
.single-cta h3 { font-size: 1.6rem; margin-bottom: .2em; }

.archive-wrap { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(48px, 7vw, 90px); }
.pagination { margin-top: 50px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination .current {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 12px;
	border-radius: var(--radius-sm); border: 1.5px solid var(--az-line);
	font-weight: 600; color: var(--az-ink);
}
.pagination .current { background: var(--az-primary); color: #fff; border-color: var(--az-primary); }
.no-results { text-align: center; font-size: 1.1rem; padding: 60px 0; }

/* ---------- Search form ---------- */
.search-form { display: flex; gap: 10px; max-width: 480px; }
.search-form .search-field { flex: 1; }

/* ---------- 404 ---------- */
.error-404 {
	position: relative; min-height: 90vh;
	display: flex; align-items: center; color: #fff; text-align: center;
}
.error-404__bg { position: absolute; inset: 0; background-color: var(--az-deep); background-size: cover; background-position: center; }
.error-404__overlay { position: absolute; inset: 0; background: rgba(6, 42, 64, .75); }
.error-404__inner { position: relative; z-index: 2; margin: 0 auto; max-width: 560px; }
.error-404__code { color: #fff; font-size: clamp(5rem, 16vw, 10rem); line-height: 1; margin: .1em 0; }
.error-404__text { font-size: 1.2rem; color: rgba(255, 255, 255, .9); margin-bottom: 1.8em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--az-deep); color: rgba(255, 255, 255, .8); padding: clamp(56px, 8vw, 90px) 0 32px; }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.brand--footer { color: #fff; margin-bottom: 18px; }
.brand--footer .brand__name { font-size: 1.5rem; }
.brand--footer .az-icon { color: var(--az-accent); }
.site-footer__blurb { font-size: .98rem; max-width: 340px; }
.site-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.site-footer__social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 12px;
	background: rgba(255, 255, 255, .08); color: #fff;
	transition: background .2s var(--ease), transform .2s var(--ease);
}
.site-footer__social a:hover { background: var(--az-accent); transform: translateY(-3px); }
.site-footer__social .az-icon { width: 20px; height: 20px; }
.footer-widget__title { color: #fff; font-size: 1.1rem; margin-bottom: 18px; }
.site-footer__menu { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.site-footer__menu a { color: rgba(255, 255, 255, .8); font-weight: 500; }
.site-footer__menu a:hover { color: var(--az-accent); }
.site-footer__contact { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.site-footer__contact li { display: flex; align-items: center; gap: 12px; }
.site-footer__contact a, .site-footer__contact span { color: rgba(255, 255, 255, .82); }
.site-footer__contact a:hover { color: var(--az-accent); }
.site-footer__contact .az-icon { width: 20px; height: 20px; color: var(--az-accent); flex: none; }
.site-footer__bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
	padding-top: 26px; font-size: .88rem; color: rgba(255, 255, 255, .6);
}
.site-footer__bottom p { margin: 0; }

/* ---------- Reveal on scroll ----------
   Only hide when JS is active (html.js). Without JS the content is fully
   visible, so a script failure can never leave the page blank. */
.js .reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
	transition-delay: var(--d, 0ms);
	will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Accessibility helpers ---------- */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; padding: 0; overflow: hidden;
	position: absolute !important; word-wrap: normal !important;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 200;
	background: #fff; color: var(--az-ink); padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }
.az-icon { display: inline-block; vertical-align: middle; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.customize, .contact { grid-template-columns: 1fr; }
	.customize__media { order: -1; max-width: 460px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.pkg {
		grid-template-columns: 1fr;
		grid-template-areas: "main" "aside" "lists";
	}
	.pkg__price-card { position: static; }
	.pkg__lists { grid-template-columns: 1fr; }
}

/* Collapse the desktop nav to the hamburger earlier so it never gets cramped
   on smaller laptops or when the browser is zoomed in. */
@media (max-width: 1024px) {
	.site-nav, .site-header__actions { display: none; }
	.nav-toggle { display: block; }
}

@media (max-width: 860px) {
	.section__head:not(.section__head--center) { display: block; }
	.section__head:not(.section__head--center) .section__lead { margin-top: 14px; }
}

@media (max-width: 640px) {
	.pkg__day-panel { grid-template-columns: 1fr; gap: 16px; }
	.pkg__highlights { grid-template-columns: repeat(3, 1fr); }
	.pkg__freebies { grid-template-columns: 1fr; }
	.pkg-list__items { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	body { font-size: 16px; }
	.enquiry-form .form-row { grid-template-columns: 1fr; gap: 0; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.hero__actions .btn { flex: 1; }
	.customize__badge { left: 0; }
	.float-whatsapp { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.reveal, .js .reveal { opacity: 1; transform: none; }
	.hero__bg { animation: none; transform: none; }
}

/* ---------- Crawlable cover images (SEO/a11y replacement for CSS backgrounds) ---------- */
.az-cover {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.dest-card__media,
.ferry-card__media,
.customize__img,
.expert-card__avatar { position: relative; overflow: hidden; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 860px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
	background: var(--az-bg);
	border: 1px solid var(--az-line);
	border-radius: 16px;
	padding: 0 22px;
	transition: box-shadow .2s var(--ease);
}
.faq__item[open] { box-shadow: 0 14px 34px -22px rgba(6, 42, 64, .35); }
.faq__q {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 18px 0;
	font-weight: 700; color: var(--az-ink); font-size: 1.02rem;
	cursor: pointer; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .az-icon { width: 18px; height: 18px; flex: none; color: var(--az-primary); transform: rotate(90deg); transition: transform .2s var(--ease); }
.faq__item[open] .faq__q .az-icon { transform: rotate(-90deg); }
.faq__a { padding: 0 0 20px; color: var(--az-body); font-size: .98rem; }

/* ---------- Related links (internal-linking silo) ---------- */
.related-links { margin: 56px auto 72px; }
.related-links__title { font-size: 1.3rem; color: var(--az-ink); margin-bottom: 18px; }
.related-links__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.related-links__card {
	display: block; padding: 20px 22px;
	background: var(--az-bg-alt);
	border: 1px solid var(--az-line);
	border-radius: 16px;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.related-links__card:hover { transform: translateY(-3px); border-color: var(--az-accent); box-shadow: 0 16px 34px -22px rgba(6, 42, 64, .4); }
.related-links__label { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--az-primary); }
.related-links__label .az-icon { width: 16px; height: 16px; flex: none; }
.related-links__desc { display: block; margin-top: 6px; font-size: .9rem; color: var(--az-body); }

/* ---------- Comparison table (ferry page) ---------- */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 32px 0; border: 1px solid var(--az-line); border-radius: 16px; }
.compare-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: .95rem; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--az-line); }
.compare-table thead th { background: var(--az-bg-tint); color: var(--az-ink); font-weight: 700; }
.compare-table tbody th { color: var(--az-ink); font-weight: 600; white-space: nowrap; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- Enquiry page ---------- */
.enquire-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; margin: 56px auto; }
.enquire-layout .enquiry-form { background: var(--az-bg-alt); border: 1px solid var(--az-line); border-radius: 20px; padding: 30px; }
.field--checkgroup { display: block; }
.checkgroup { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 6px; }
.checkgroup label {
	display: flex; align-items: center; gap: 8px;
	padding: 10px 12px; font-size: .92rem; font-weight: 500; color: var(--az-ink);
	background: var(--az-bg); border: 1px solid var(--az-line); border-radius: 12px; cursor: pointer;
}
.checkgroup input[type="checkbox"] { accent-color: var(--az-primary); width: 16px; height: 16px; flex: none; }
.enquiry-success {
	max-width: 720px; margin: 56px auto; padding: 40px;
	background: var(--az-bg-alt); border: 1px solid var(--az-line); border-radius: 20px; text-align: center;
}
.enquiry-success h2 { color: var(--az-ink); margin-bottom: 10px; }
.enquiry-success p { color: var(--az-body); margin-bottom: 22px; }
.enquiry-success .btn { margin: 4px 6px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Content pages (customize / ferry / destination singles) ---------- */
.content-section { max-width: 860px; margin: 48px auto; }
.content-section h2 { font-size: 1.5rem; color: var(--az-ink); margin: 1.4em 0 .6em; }
.content-section p { margin-bottom: 1em; }
.content-section ul { margin: 0 0 1.2em 1.2em; }
.content-section ul li { margin-bottom: .5em; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; padding: 0; list-style: none; }
.dest-tags li { padding: 7px 16px; border-radius: 999px; background: var(--az-bg-tint); color: var(--az-primary); font-weight: 600; font-size: .88rem; }
.dest-callout {
	display: flex; gap: 14px; align-items: flex-start;
	padding: 20px 24px; margin: 26px 0;
	background: var(--az-bg-tint); border-radius: 16px; color: var(--az-ink);
}
.dest-callout .az-icon { width: 22px; height: 22px; flex: none; color: var(--az-primary); margin-top: 2px; }
.todo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; margin: 24px 0; }
.todo-card { padding: 20px 22px; background: var(--az-bg); border: 1px solid var(--az-line); border-radius: 16px; }
.todo-card h3 { font-size: 1.02rem; color: var(--az-ink); margin-bottom: 6px; }
.todo-card p { font-size: .92rem; color: var(--az-body); margin: 0; }

.testimonials__more { text-align: center; margin-top: 28px; }
.testimonials__more a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.testimonials__more .az-icon { width: 16px; height: 16px; }

@media (max-width: 900px) {
	.enquire-layout { grid-template-columns: 1fr; }
}

/* =====================================================================
   Honeymoon package — unique romantic design
   Scoped palette so it never leaks to the other packages/pages.
   ===================================================================== */
:root {
	--az-rose: #b8336a;
	--az-rose-deep: #7d1f47;
	--az-rose-light: #ff6c9a; /* legible on the dark navy price card */
	--az-gold: #c99a4e;
	--az-blush: #fff5f8;
	--az-blush-2: #ffe9f0;
}

/* ---- Homepage feature banner ---- */
.pkg-feature {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 0;
	margin-bottom: 40px;
	border-radius: var(--radius-lg, 22px);
	overflow: hidden;
	background: linear-gradient(135deg, var(--az-blush), var(--az-blush-2));
	border: 1.5px solid #f3c9d8;
	box-shadow: 0 30px 60px -30px rgba(184, 51, 106, .5);
}
.pkg-feature__media { position: relative; overflow: hidden; min-height: 340px; display: block; }
.pkg-feature__ribbon {
	position: absolute; top: 16px; left: 16px; z-index: 2;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 7px 14px; border-radius: 999px;
	background: var(--az-rose); color: #fff; font-size: .8rem; font-weight: 700;
	box-shadow: 0 10px 22px -8px rgba(184, 51, 106, .9);
}
.pkg-feature__ribbon .az-icon { width: 15px; height: 15px; }
.pkg-feature__body { padding: 40px 42px; display: flex; flex-direction: column; justify-content: center; }
.pkg-feature__eyebrow {
	font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
	color: var(--az-rose); margin-bottom: 8px;
}
.pkg-feature__title {
	font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	color: var(--az-rose-deep); line-height: 1.15; margin-bottom: 12px;
}
.pkg-feature__desc { color: var(--az-body); margin-bottom: 20px; }
.pkg-feature__inclusions { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; padding: 0; }
.pkg-feature__inclusions li {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px; border-radius: 999px;
	background: #fff; border: 1px solid #f3c9d8; color: var(--az-rose-deep);
	font-size: .86rem; font-weight: 600;
}
.pkg-feature__inclusion-icon { display: inline-flex; }
.pkg-feature__inclusion-icon .az-icon { width: 17px; height: 17px; color: var(--az-rose); }
.pkg-feature__foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: auto; }
.pkg-feature__price strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--az-rose-deep); }
.pkg-feature__price span { display: block; font-size: .8rem; color: var(--az-muted); }
.pkg-feature .btn--coral { --btn-bg: var(--az-rose); box-shadow: 0 14px 30px -12px rgba(184, 51, 106, .7); }

@media (max-width: 860px) {
	.pkg-feature { grid-template-columns: 1fr; }
	.pkg-feature__media { min-height: 240px; }
	.pkg-feature__body { padding: 30px 26px; }
}

/* ---- Single page: romantic treatment ---- */
.pkg-single__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-style: italic; font-size: 1.1rem;
	color: var(--az-rose); margin-bottom: 12px;
}
.pkg-single__eyebrow .az-icon { width: 18px; height: 18px; color: var(--az-gold); }

.romance-inclusions {
	margin: 30px 0 8px; padding: 30px;
	background: linear-gradient(135deg, var(--az-blush), var(--az-blush-2));
	border: 1px solid #f3c9d8; border-radius: var(--radius-lg, 22px);
}
.romance-inclusions__title {
	font-family: var(--font-display); font-size: 1.4rem; color: var(--az-rose-deep);
	text-align: center; margin-bottom: 22px;
}
.romance-inclusions__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.romance-card {
	display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
	padding: 22px 18px; background: #fff; border-radius: 16px; border: 1px solid #f6d7e2;
}
.romance-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--az-blush-2); margin-bottom: 4px;
}
.romance-card__icon .az-icon { width: 24px; height: 24px; color: var(--az-rose); }
.romance-card__title { color: var(--az-rose-deep); font-size: 1rem; }
.romance-card__note { color: var(--az-muted); font-size: .85rem; }

/* Warm the shared timeline + price card only within the honeymoon single. */
.pkg-single--honeymoon .pkg-single__heading { color: var(--az-rose-deep); }
.pkg-single--honeymoon .pkg-timeline__num { background: linear-gradient(135deg, var(--az-rose), var(--az-gold)); }
.pkg-single--honeymoon .pkg-timeline__row::before,
.pkg-single--honeymoon .pkg-timeline::before { background: #f3c9d8; }
.pkg-single--honeymoon .pkg__day-items .az-icon { color: var(--az-rose); }
.pkg-single--honeymoon .pkg__price-card { border-top: 3px solid var(--az-rose); }
.pkg-single--honeymoon .pkg__price-total { color: var(--az-rose-light); }
.pkg-single--honeymoon .btn--coral { --btn-bg: var(--az-rose); box-shadow: 0 14px 30px -12px rgba(184, 51, 106, .7); }
.pkg-single--honeymoon .pkg__slots .az-icon { color: var(--az-gold); }

/* =====================================================================
   Package archive — travel-ticket / boarding-pass cards
   ===================================================================== */
.pkg-tickets {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
	gap: 30px;
	background: var(--az-bg-alt);
	border-radius: 28px;
	padding: clamp(24px, 4vw, 44px);
}
.pkg-ticket {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 18px 40px -26px rgba(6, 42, 64, .5);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pkg-ticket:hover { transform: translateY(-6px); box-shadow: 0 26px 52px -24px rgba(6, 42, 64, .55); }

.pkg-ticket__head { position: relative; aspect-ratio: 16 / 10; border-radius: 20px 20px 0 0; overflow: hidden; }
.pkg-ticket__head::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, rgba(6, 42, 64, .35) 0%, transparent 34%, transparent 62%, rgba(6, 42, 64, .55) 100%);
}
.pkg-ticket__tag {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	background: rgba(6, 42, 64, .85); color: #fff;
	font-weight: 700; font-size: .8rem; letter-spacing: .03em;
	padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(2px);
}
.pkg-ticket__brand {
	position: absolute; bottom: 12px; left: 16px; z-index: 2;
	color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}

/* Perforation line with cut-out notches straddling the card edges. */
.pkg-ticket__perf { position: relative; height: 0; margin: 0 22px; border-top: 2px dashed var(--az-line); }
.pkg-ticket__perf::before,
.pkg-ticket__perf::after {
	content: ""; position: absolute; top: 0; width: 22px; height: 22px;
	border-radius: 50%; background: var(--az-bg-alt);
}
.pkg-ticket__perf::before { left: -22px; transform: translate(-50%, -50%); }
.pkg-ticket__perf::after { right: -22px; transform: translate(50%, -50%); }

.pkg-ticket__body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.pkg-ticket__eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--az-primary); margin-bottom: 7px; }
.pkg-ticket__title { font-size: 1.12rem; line-height: 1.25; color: var(--az-ink); margin-bottom: 8px; }
.pkg-ticket__route { display: flex; gap: 6px; align-items: flex-start; font-size: .86rem; color: var(--az-body); margin-bottom: 16px; }
.pkg-ticket__route .az-icon { width: 15px; height: 15px; flex: none; color: var(--az-accent); margin-top: 2px; }

.pkg-ticket__stats { display: flex; justify-content: space-between; gap: 12px; align-items: flex-end; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--az-line); }
.pkg-ticket__stat { display: flex; flex-direction: column; gap: 3px; }
.pkg-ticket__stat .lbl { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--az-muted); }
.pkg-ticket__stat .val { font-weight: 700; color: var(--az-ink); font-size: 1rem; }
.pkg-ticket__stat--price { text-align: right; }
.pkg-ticket__stat--price .val { font-family: var(--font-display); font-size: 1.4rem; color: var(--az-coral); }

.pkg-ticket__cta {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	margin-top: 16px; padding: 12px 18px; border-radius: 12px;
	background: var(--az-primary); color: #fff; font-weight: 700;
	transition: background .2s var(--ease);
}
.pkg-ticket__cta:hover { background: var(--az-accent); color: #fff; }
.pkg-ticket__cta .az-icon { width: 16px; height: 16px; }

.pkg-ticket__barcode {
	height: 30px; margin-top: 16px; border-radius: 4px; opacity: .75;
	background: repeating-linear-gradient(90deg,
		var(--az-ink) 0 2px, transparent 2px 4px,
		var(--az-ink) 4px 7px, transparent 7px 9px,
		var(--az-ink) 9px 10px, transparent 10px 14px);
}

@media (max-width: 560px) {
	.pkg-tickets { grid-template-columns: 1fr; }
}

/* =====================================================================
   WhatsApp welcome chat popup
   ===================================================================== */
.wa-widget { position: fixed; right: 22px; bottom: 22px; z-index: 9999; }

.wa-launcher {
	position: relative;
	width: 62px; height: 62px; border-radius: 50%;
	border: none; cursor: pointer;
	background: #25d366; color: #fff;
	box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .8);
	display: grid; place-items: center;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-launcher:hover { transform: scale(1.06); }
.wa-launcher .az-icon { width: 34px; height: 34px; }
.wa-launcher::after {
	content: ""; position: absolute; inset: 0; border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
	animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.wa-launcher__badge {
	position: absolute; top: -2px; right: -2px;
	min-width: 20px; height: 20px; padding: 0 5px;
	background: #ff3b30; color: #fff; border-radius: 999px;
	font-size: .72rem; font-weight: 700; line-height: 20px; text-align: center;
	border: 2px solid #fff;
}

/* Chat panel — anchored to the corner (no launcher below it) */
.wa-panel {
	position: absolute; right: 0; bottom: 0;
	width: 340px; max-width: calc(100vw - 32px);
	border-radius: 16px; overflow: hidden;
	background: #efeae2;
	box-shadow: 0 26px 60px -18px rgba(6, 42, 64, .55);
	transform: translateY(16px) scale(.96); transform-origin: bottom right;
	opacity: 0; pointer-events: none;
	transition: opacity .25s var(--ease), transform .25s var(--ease);
	font-family: var(--font-body);
}
.wa-widget.is-open .wa-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.wa-panel__header {
	display: flex; align-items: center; gap: 10px;
	background: #075e54; color: #fff; padding: 12px 14px;
}
.wa-panel__avatar img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.35); background:#fff; }
.wa-panel__meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.wa-panel__name { font-size: .98rem; font-weight: 700; line-height: 1.2; display: inline-flex; align-items: center; gap: 5px; }
.wa-panel__verified { display: inline-grid; place-items: center; width: 15px; height: 15px; border-radius: 50%; background: #34b7f1; color: #fff; font-size: .62rem; line-height: 1; }
.wa-panel__status { font-size: .76rem; opacity: .85; display: inline-flex; align-items: center; gap: 6px; }
.wa-panel__dot { width: 8px; height: 8px; border-radius: 50%; background: #25d366; display: inline-block; }
.wa-panel__close { margin-left: auto; background: transparent; border: 0; color: #fff; cursor: pointer; padding: 4px; opacity: .85; }
.wa-panel__close:hover { opacity: 1; }
.wa-panel__close .az-icon { width: 20px; height: 20px; }

.wa-panel__body {
	padding: 18px 14px; min-height: 168px; max-height: 46vh; overflow-y: auto;
	scroll-behavior: smooth;
	/* WhatsApp beige chat wallpaper with a faint doodle tint */
	background-color: #e5ddd5;
	background-image:
		radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
		radial-gradient(rgba(6,42,64,.04) 1px, transparent 1px);
	background-size: 26px 26px, 26px 26px;
	background-position: 0 0, 13px 13px;
	display: flex; flex-direction: column; gap: 10px;
}
.wa-msg { display: flex; }
/* The class display rules above would override the [hidden] attribute the JS
   toggles — this keeps hidden messages/typing actually hidden until revealed. */
.wa-msg[hidden], .wa-typing[hidden] { display: none; }
.wa-msg__bubble {
	position: relative; max-width: 86%;
	background: #fff; color: #111b21;
	padding: 8px 12px 18px; border-radius: 8px; border-top-left-radius: 0;
	font-size: .9rem; line-height: 1.45;
	box-shadow: 0 1px 1px rgba(6, 42, 64, .12);
}
.wa-msg__bubble::before {
	content: ""; position: absolute; top: 0; left: -8px;
	border: 8px solid transparent; border-top-color: #fff; border-right-color: #fff;
}
.wa-msg__from { display: block; color: #075e54; font-size: .8rem; font-weight: 700; margin-bottom: 2px; }
.wa-msg__time { position: absolute; right: 10px; bottom: 4px; font-size: .66rem; color: #667781; }

/* Typing indicator */
.wa-typing { align-self: flex-start; background: #fff; border-radius: 8px; border-top-left-radius: 0; padding: 12px 14px; display: inline-flex; gap: 4px; box-shadow: 0 1px 1px rgba(6,42,64,.12); }
.wa-typing span { width: 7px; height: 7px; border-radius: 50%; background: #9aa6ac; animation: wa-blink 1.2s infinite both; }
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes wa-blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

.wa-panel__foot { background: #f0f2f5; padding: 12px 14px; }
.wa-cta {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	width: 100%; padding: 12px; border-radius: 999px;
	background: #25d366; color: #fff; font-weight: 700;
	transition: background .2s var(--ease);
}
.wa-cta:hover { background: #1db954; color: #fff; }
.wa-cta .az-icon { width: 20px; height: 20px; }

@media (prefers-reduced-motion: reduce) {
	.wa-launcher::after { animation: none; }
	.wa-panel { transition: opacity .2s ease; transform: none; }
}
@media (max-width: 480px) {
	.wa-widget { right: 16px; bottom: 16px; }
	.wa-panel { bottom: 0; }
}
