/* Global ------------------------------------------------------------ */
/* The site's full-bleed sections (hero slider, Best Price Guaranteed,
   Welcome split, photo banner, footer bands) break out to viewport width
   with `margin: calc(50% - 50vw)`. `50vw` counts the vertical scrollbar's
   width but the content box (`50%`) does not, so those sections overshoot
   by the scrollbar width and spawn a spurious horizontal scrollbar.
   `overflow-x: clip` trims that overshoot. It is set on `.wp-site-blocks`
   (WordPress's content wrapper that directly contains the full-bleed
   sections) rather than on `html`/`body`: overflow on the root element is
   propagated to the viewport where `clip` behaves inconsistently, and a
   `body`-level clip did not catch the overshoot in this layout, whereas
   clipping the wrapper that actually holds the overflowing sections does.
   `clip` (not `hidden`) is used so no scroll container is created. */
.wp-site-blocks {
	overflow-x: clip;
}

/* Mobile gutter: give normal page content a consistent side margin so it
   doesn't run edge-to-edge on phones. The full-bleed sections (hero, Best
   Price Guaranteed) still break out to the viewport edges via their own
   `margin: calc(50% - 50vw)`, which resolves against this padded content
   box and lands back at the viewport edge. */
@media (max-width: 781px) {
	.entry-content {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* Header / nav ------------------------------------------------------------ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #ffffff;
}
.site-header .wp-block-navigation-item > .wp-block-navigation-item__content {
	color: #2c3e50;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.95rem;
	font-weight: 700;
	padding: 0.5rem 1rem;
	transition: color 0.2s ease;
}
.site-header .wp-block-navigation-item > .wp-block-navigation-item__content:hover,
.site-header .wp-block-navigation-item > .wp-block-navigation-item__content:focus {
	color: #087dc2;
}
.site-header .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content,
.site-header .wp-block-navigation-item--active > .wp-block-navigation-item__content {
	background: #fade03;
	color: #2c3e50;
}

/* Mobile menu — clear 3-bar hamburger icon (core default is only 2 bars) */
.site-header .wp-block-navigation__responsive-container-open svg {
	display: none;
}
.site-header .wp-block-navigation__responsive-container-open {
	width: 34px;
	height: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%232c3e50' d='M3 5.5h18v2H3zM3 11h18v2H3zM3 16.5h18v2H3z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 28px 28px;
}
/* Mobile menu — compact white dropdown panel (theme-consistent) -------------- */
.site-header .wp-block-navigation__responsive-container.is-menu-open {
	position: fixed;
	top: 6.75rem;
	right: 1rem;
	left: auto;
	bottom: auto;
	width: auto;
	min-width: 210px;
	max-width: calc(100vw - 2rem);
	height: auto;
	max-height: calc(100vh - 8.5rem);
	overflow-y: auto;
	background: #ffffff;
	border: 1px solid #e4e8ea;
	border-radius: 12px;
	box-shadow: 0 16px 44px rgba(12, 27, 39, 0.18);
	padding: 0.5rem;
	justify-content: flex-start;
	animation: menu-drop-in 0.22s ease-out;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-close {
	display: block;
	width: 100%;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
	display: block;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	display: block;
	width: 100%;
	min-height: 0;
	padding: 0.25rem 0;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	text-align: left;
	gap: 0.15rem;
	width: 100%;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	width: 100%;
	align-items: stretch;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	display: block;
	color: #2c3e50;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.05rem;
	font-weight: 700;
	padding: 0.65rem 1rem;
	border-radius: 8px;
	transition: background 0.2s ease, color 0.2s ease;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover,
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus {
	background: #f6f6f6;
	color: #087dc2;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .current-menu-item > .wp-block-navigation-item__content {
	background: #fade03;
	color: #2c3e50;
}
/* Hide WP's X close button — the hamburger itself toggles the menu closed */
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	display: none;
}
@keyframes menu-drop-in {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Breadcrumb bar (inner pages) ------------------------------------------------------------ */
.page-hero {
	background: #f8f8f8;
	padding: 1rem 2rem;
}
.page-hero__inner {
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	flex-wrap: wrap;
}
.page-hero h1 {
	color: #2c3e50;
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0;
}
.page-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.page-hero__crumb-home {
	color: #087dc2;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
}
.page-hero__crumb-home:hover {
	text-decoration: underline;
}
.page-hero__crumb-sep {
	color: #b7c0c6;
	font-size: 0.85rem;
}
.page-hero__crumb-current {
	font-size: 0.85rem;
	color: #7c8a94;
	font-weight: 600;
	margin: 0;
}
/* Plain photo banner (no overlay, no scrim) ------------------------------------------------------------ */
.photo-banner img {
	width: 100%;
	height: clamp(520px, 27vw, 860px);
	display: block;
	object-fit: cover;
}
.photo-banner.alignfull {
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Cards ------------------------------------------------------------ */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
}
.card-grid + .wp-block-buttons {
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.card {
	background: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(12, 27, 39, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(12, 27, 39, 0.14);
}
.card figure {
	margin: 0;
}
.card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.card h3 {
	color: #2c3e50;
	font-size: 1.1rem;
	margin: 1.25rem 1.5rem 0.5rem;
}
.card p {
	color: #8b8b8b;
	margin: 0 1.5rem 1.5rem;
}

/* Buttons ------------------------------------------------------------ */
.btn-cta .wp-block-button__link {
	background: #6dc82b;
	color: #ffffff;
	border-radius: 3px;
	font-weight: 700;
}
.btn-cta:hover .wp-block-button__link {
	background: #5cb324;
}
.btn-cta-blue .wp-block-button__link {
	background: #087dc2;
	color: #ffffff;
	border-radius: 3px;
	font-weight: 700;
}
.btn-cta-blue:hover .wp-block-button__link {
	background: #066aa8;
}

/* Welcome section — split image + text with stats ------------------------------------------------------------ */
.welcome-split {
	margin-top: 4rem;
}
.welcome-split .wp-block-columns {
	align-items: stretch;
	gap: 0;
	min-height: 420px;
}
.welcome-split__image {
	margin: 0;
}
.welcome-split__image .wp-block-image {
	height: 100%;
	margin: 0;
}
.welcome-split__image img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	display: block;
}
.welcome-split__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 4rem;
	margin: 0;
}
.section-kicker {
	color: #6dc82b;
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.4;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
}
.section-heading {
	text-transform: uppercase;
	line-height: 1.15;
	letter-spacing: 0.01em;
	margin: 0 0 1.75rem;
	font-size: clamp(1.9rem, 2.6vw, 2.75rem);
}
.welcome-stats {
	display: flex;
	gap: 2.5rem;
	margin-bottom: 2rem;
}
.welcome-stat__num {
	display: block;
	font-size: 1.75rem;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1.1;
}
.welcome-stat__label {
	display: block;
	font-size: 0.75rem;
	color: #8b8b8b;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-top: 0.3rem;
}
.welcome-split__content p {
	color: #8b8b8b;
	line-height: 1.75;
	max-width: 48ch;
	margin-bottom: 2rem;
}
@media (max-width: 781px) {
	.welcome-split {
		margin-top: 2.5rem;
	}
	.welcome-split__image img {
		min-height: 240px;
	}
	.welcome-split__content {
		padding: 2rem 0 0;
	}
	.welcome-stats {
		flex-wrap: wrap;
		gap: 1.25rem 2rem;
	}
}

/* Best Price Guaranteed parallax section (formerly Newsletter) ------------------------------------------------------------ */
.promise-parallax {
	background-image: url(/wp-content/uploads/2026/07/home_banner-1.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 3rem 2rem;
}
.promise-parallax.alignfull {
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.promise-parallax .wp-block-columns {
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	max-width: 1100px;
	margin-inline: auto;
}
.promise-parallax .wp-block-column:first-child,
.promise-parallax .wp-block-column:last-child {
	flex: 0 0 240px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.promise-parallax .wp-block-column:first-child figure,
.promise-parallax .wp-block-column:last-child figure {
	margin: 0;
}
.promise-parallax .wp-block-column:first-child img,
.promise-parallax .wp-block-column:last-child img {
	width: 100%;
	height: 235px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
	display: block;
}
.promise-parallax .wp-block-column:nth-child(2) {
	background: rgba(12, 27, 39, 0.55);
	padding: 1.75rem 2rem;
	text-align: center;
	flex: 1 1 380px;
}
.promise-parallax .section-heading {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
}
.promise-parallax .wp-block-column:nth-child(2) > p:not(.section-kicker) {
	margin: 0 0 1rem;
}
.promise-parallax .promise-features {
	justify-content: center;
	gap: 0.75rem 1.5rem;
	margin: 1rem 0;
}
.promise-parallax .feature-item {
	width: 220px;
}
.promise-parallax .feature-item p {
	margin: 0;
}
.promise-parallax .feature-item p.feature-item__icon {
	margin-bottom: 0.3rem;
}
.promise-parallax .feature-item p:not(.feature-item__icon) {
	color: #ffffff;
}
/* Weather Atlas widget (recreated look) ------------------------------------------------------------ */
.weather-widget {
	background: #ff9900;
	border: 1px solid #ee8800;
	color: #ffffff;
	max-width: 320px;
	font-size: 0.8rem;
}
.weather-widget__header {
	padding: 0.5rem 1rem;
	border-bottom: 1px solid #ee8800;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
}
.weather-widget__body {
	text-align: center;
	padding: 1rem;
}
.weather-widget__icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 0.25rem;
}
.weather-widget__temp {
	font-size: 2.25rem;
	font-weight: 700;
	display: block;
}
.weather-widget__desc {
	text-transform: capitalize;
	margin-bottom: 0.5rem;
}
.weather-widget__sunrise-sunset {
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.weather-widget__stats {
	padding: 0.75rem 1rem;
	font-size: 0.75rem;
	line-height: 1.6;
}
.weather-widget__hourly,
.weather-widget__daily {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 1rem;
	border-top: 1px solid #ee8800;
}
.weather-widget__hour-col,
.weather-widget__day-col {
	text-align: center;
	font-size: 0.7rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}
.weather-widget__footer {
	border-top: 1px solid #ee8800;
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	text-align: center;
}
.site-footer .weather-widget__footer a {
	color: #ffffff;
	text-decoration: underline;
}

/* Hero slider (Home) — cinematic full-bleed treatment ------------------------------------------------------------ */
.hero-slider {
	position: relative;
	overflow: hidden;
	height: calc(100vh - var(--site-chrome-height, 142px));
	min-height: 560px;
	display: flex;
	align-items: center;
}
.hero-slider.alignfull {
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.hero-slider__bg,
.hero-slider__slide {
	position: absolute;
	inset: 0;
}
.hero-slider__slide {
	opacity: 0;
	transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slider__slide.is-active {
	opacity: 1;
}
.hero-slider__slide-img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform 8s ease-out;
}
.hero-slider__slide-img.is-active {
	transform: scale(1.08);
}
/* Gradient scrim — keeps hero text legible on every slide, brighter or darker */
.hero-slider__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, rgba(8, 20, 33, 0.6) 0%, rgba(8, 20, 33, 0.28) 42%, rgba(8, 20, 33, 0) 72%),
		linear-gradient(to top, rgba(8, 20, 33, 0.45) 0%, rgba(8, 20, 33, 0) 45%);
	pointer-events: none;
}
.hero-slider__inner {
	position: relative;
	z-index: 1;
	padding: 3rem 2rem;
	max-width: 1200px;
	margin-inline: auto;
	width: 100%;
}
.hero-slider__reveal [data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	animation: hero-reveal 0.8s ease-out forwards;
}
.hero-slider__reveal [data-reveal="1"] {
	animation-delay: 0.1s;
}
.hero-slider__reveal [data-reveal="2"] {
	animation-delay: 0.3s;
}
.hero-slider__reveal [data-reveal="3"] {
	animation-delay: 0.5s;
}
.hero-slider__reveal [data-reveal="4"] {
	animation-delay: 0.7s;
}
@keyframes hero-reveal {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.hero-kicker {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	color: rgba(255, 255, 255, 0.9);
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
	font-size: clamp(1.1rem, 1.6vw, 1.5rem);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
	margin: 0 0 1.5rem;
}
.hero-kicker::before {
	content: "";
	width: 38px;
	height: 1px;
	background: currentColor;
	opacity: 0.85;
}
.hero-slider__inner h1 {
	color: #ffffff;
	font-weight: 400;
	font-size: clamp(2.5rem, 5.2vw, 4.75rem);
	line-height: 1.12;
	letter-spacing: 0.005em;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
	margin-bottom: 1.25rem;
	max-width: 18ch;
}
.hero-slider__inner p:not(.hero-kicker) {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1.05rem, 1.4vw, 1.3rem);
	line-height: 1.6;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
	margin-top: 0;
	margin-bottom: 2rem;
	max-width: 44ch;
	padding-left: 1.35rem;
	border-left: 2px solid rgba(255, 255, 255, 0.4);
}
.hero-slider__progress {
	position: absolute;
	z-index: 2;
	bottom: calc(2rem + var(--hero-controls-overflow, 0px));
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.75rem;
}
.hero-slider__progress-segment {
	position: relative;
	width: 56px;
	height: 4px;
	padding: 0;
	border: none;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.4);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	overflow: hidden;
}
.hero-slider__progress-fill {
	position: absolute;
	inset: 0;
	display: block;
	width: 0%;
	background: #ffffff;
}
.hero-slider__progress-segment.is-active .hero-slider__progress-fill {
	animation: hero-progress-fill 6s linear forwards;
}
.hero-slider__progress-segment:hover .hero-slider__progress-fill {
	animation-play-state: paused;
}
@keyframes hero-progress-fill {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

/* Secondary strip slider (footer "Welcome to United Arab Emirates") ------------------------------------------------------------ */
/* Let the slider's column grow to the row height, so the slider can fill
   the space left of the (taller) weather widget beside it instead of
   staying pinned to its min-height floor. */
.footer-widgets-row .wp-block-column:last-child {
	display: flex;
	flex-direction: column;
}
.uae-slider {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	flex: 1;
}
.uae-slider__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease;
}
.uae-slider__slide.is-active {
	opacity: 1;
}

/* Footer ------------------------------------------------------------ */
.site-footer {
	background: #f6f6f6;
}
.site-footer h3,
.site-footer h4 {
	color: #2c3e50;
	font-weight: 700;
}
.site-footer h3 {
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-block;
	padding-bottom: 0.5rem;
	border-bottom: 3px solid var(--wp--preset--color--sand-gold);
}
.site-footer h4 {
	font-size: 1rem;
}
.site-footer p {
	color: #8b8b8b;
	font-size: 0.9rem;
}
.site-footer a {
	color: #19a9e5;
	text-decoration: none;
}
.site-footer a:hover {
	text-decoration: underline;
}
.footer-widgets-row,
.footer-columns,
.footer-meta,
.footer-bottom-bar {
	max-width: 1200px;
	margin-inline: auto;
}
.footer-widgets-row,
.footer-columns {
	padding: 2rem;
}
/* Contact section — section intro + premium cards */
.footer-contact-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.5rem;
}
.footer-contact-intro h3 {
	margin-bottom: 0.75rem;
}
.footer-contact-intro p {
	font-size: 1rem;
	color: #6b7280;
}
.footer-columns .wp-block-column {
	display: flex;
}
.footer-contact-card {
	flex: 1;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(12, 27, 39, 0.06);
	padding: 1.75rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(12, 27, 39, 0.12);
}
.footer-contact-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #19a9e5;
	color: #ffffff;
	font-size: 1.15rem;
	margin-bottom: 1rem;
}
.footer-contact-card h4 {
	margin: 0 0 0.2rem;
}
.footer-contact-card__role {
	font-size: 0.8rem;
	font-weight: 600;
	color: #2c3e50;
	margin: 0 0 0.85rem;
}
.footer-contact-card__lines {
	margin: 0 0 0.6rem;
}
.footer-contact-card__lines a {
	display: block;
	line-height: 1.7;
}
.footer-contact-card__note {
	font-size: 0.8rem;
	font-style: italic;
	color: #8b8b8b;
	margin: 0 0 1.1rem;
}
.footer-contact-card__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
}
.footer-contact-card__pills a.contact-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.footer-contact-card__pills a.contact-pill:hover {
	opacity: 0.88;
	text-decoration: none;
}
.contact-pill--whatsapp {
	background: #25d366;
}
.contact-pill--viber {
	background: #7360f2;
}
.contact-pill--email {
	background: #19a9e5;
}
/* Footer meta row: SIA trust badge (left) + nav menu (right) */
.footer-meta {
	align-items: center;
	gap: 1.5rem 2rem;
	padding: 1.75rem 2rem;
	border-top: 1px solid #e4e8ea;
}
.footer-badges {
	align-items: stretch;
	gap: 1rem;
}
.footer-partner,
.footer-hotline {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	flex-shrink: 0;
	padding: 0.6rem 1rem;
	border: 1px solid #e4e8ea;
	border-radius: 10px;
	background: #ffffff;
}
.footer-partner img {
	display: block;
	height: 46px;
	width: auto;
}
.footer-partner__text,
.footer-hotline__text {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}
.footer-partner__text strong,
.footer-hotline__text strong {
	font-size: 0.85rem;
	font-weight: 700;
	color: #2c3e50;
}
.footer-partner__text span {
	font-size: 0.72rem;
	color: #8b8b8b;
}
.footer-hotline__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #19a9e5;
	color: #ffffff;
	font-size: 1rem;
	flex-shrink: 0;
}
.footer-hotline__text a {
	font-size: 0.76rem;
	color: #19a9e5;
}
.footer-nav .wp-block-navigation-item > .wp-block-navigation-item__content {
	color: #2c3e50;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0;
	transition: color 0.2s ease;
}
.footer-nav .wp-block-navigation-item > .wp-block-navigation-item__content:hover {
	color: #19a9e5;
}
/* On mobile the footer stacks into a single column; center everything
   (badges, nav, contact-card content, and the blue bottom bar) for a
   balanced centered look, and drop the intro's bottom margin so the cards
   sit closer to the "Talk to a Travel Expert" copy. */
@media (max-width: 781px) {
	.footer-meta {
		justify-content: center;
	}
	.footer-badges {
		justify-content: center;
	}
	.footer-nav .wp-block-navigation__container {
		justify-content: center;
	}
	.footer-contact-intro {
		margin-bottom: 0;
	}
	.footer-contact-card {
		text-align: center;
	}
	.footer-contact-card__pills {
		justify-content: center;
	}
	.footer-bottom-bar {
		justify-content: center;
		text-align: center;
	}
}
.footer-bottom-bar {
	position: relative;
	padding: 1rem 2rem;
	gap: 0.5rem 2rem;
}
.footer-bottom-bar::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background: #087dc2;
	z-index: 0;
}
.footer-bottom-bar > * {
	position: relative;
	z-index: 1;
}
.footer-bottom-bar p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
	margin: 0;
}
.footer-bottom-bar a {
	color: #ffffff;
	text-decoration: underline;
}
.footer-bottom-bar a[href*="mangosoftsolutions"] {
	text-decoration: none;
}

/* Contact Form 7 — premium input styling (Packages + Contact Us; Newsletter has its own scoped override) ------------------------------------------------------------ */
.wpcf7-form {
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(12, 27, 39, 0.06);
	padding: 2rem;
	max-width: 500px;
}
.wpcf7-form-control:not(.wpcf7-checkbox):not(.wpcf7-radio):not([type="submit"]) {
	display: block;
	width: 100%;
	max-width: 400px;
	box-sizing: border-box;
	font-family: inherit;
	padding: 0.75rem;
	border: 1px solid #d0d5db;
	border-radius: 6px;
	margin-bottom: 0.75rem;
	box-shadow: 0 1px 3px rgba(12, 27, 39, 0.08);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wpcf7-form-control:not(.wpcf7-checkbox):not(.wpcf7-radio):not([type="submit"]):focus {
	border-color: #6dc82b;
	box-shadow: 0 0 0 3px rgba(109, 200, 43, 0.15);
	outline: none;
}
.wpcf7-form label {
	display: block;
	color: var(--wp--preset--color--navy);
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.35rem;
}
.wpcf7-form input[type="submit"] {
	background: #6dc82b;
	color: #ffffff;
	border: none;
	border-radius: 3px;
	padding: 0.6rem 1.5rem;
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
	cursor: pointer;
}
.wpcf7-form input[type="submit"]:hover {
	background: #5cb324;
}

/* Embedded content — prevent inline-styled iframes (e.g. Contact Us map) from overflowing the viewport ------------------------------------------------------------ */
.entry-content iframe {
	box-sizing: border-box;
	max-width: 100%;
}

/* Gallery ------------------------------------------------------------ */
.wp-block-gallery figure.wp-block-image img {
	border: none;
}

@media (prefers-reduced-motion: reduce) {
	.hero-slider__slide,
	.uae-slider__slide {
		transition: none;
	}
	.hero-slider__slide-img {
		transition: none;
		transform: scale(1) !important;
	}
	.hero-slider__reveal [data-reveal] {
		opacity: 1;
		transform: none;
		animation: none;
	}
	.hero-slider__progress-fill {
		animation: none !important;
		width: 100%;
	}
	.site-header .wp-block-navigation__responsive-container.is-menu-open {
		animation: none;
	}
}

/* Hero slider — small-screen adjustments (keep 7 progress bars on-screen) --- */
@media (max-width: 600px) {
	.hero-slider__progress {
		gap: 0.4rem;
	}
	.hero-slider__progress-segment {
		width: 32px;
	}
}

/* Feature icon row ----------------------------------------------------- */
.feature-row {
	padding: 2rem;
	background: #ffffff;
}
.feature-item {
	text-align: center;
	max-width: 220px;
}
.feature-item__icon {
	color: #6dc82b;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

/* Pricing / badges ----------------------------------------------------- */
.price-badge {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	color: #2c3e50;
}

/* About Us page ------------------------------------------------------------ */
.about-quote {
	max-width: 820px;
	margin: 3rem auto 3.5rem;
	text-align: center;
}
.about-quote__text {
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(1.35rem, 2.4vw, 1.9rem);
	font-style: italic;
	line-height: 1.5;
	color: #2c3e50;
	margin: 0 0 1rem;
}
.about-quote__cite {
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2c3e50;
	font-weight: 700;
	margin: 0;
}
.about-welcome {
	align-items: stretch;
	gap: 3rem;
	margin-bottom: 3rem;
	width: min(1160px, calc(100vw - 3rem));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}
.about-welcome__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-welcome__image .wp-block-image {
	height: 100%;
	margin: 0;
}
.about-welcome__image img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(12, 27, 39, 0.18);
	display: block;
}
.about-factors {
	gap: 1.5rem;
	margin-bottom: 3rem;
	flex-wrap: nowrap;
	width: min(1160px, calc(100vw - 3rem));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}
.about-factors .feature-item {
	background: #ffffff;
	border: 1px solid #eef1f3;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(12, 27, 39, 0.06);
	padding: 1.75rem 1rem;
	flex: 1 1 0;
	max-width: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-factors .feature-item__icon {
	color: #087dc2;
}
.about-factors .feature-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(12, 27, 39, 0.12);
}
.about-story {
	width: min(1160px, calc(100vw - 3rem));
	max-width: none;
	margin-left: 50%;
	margin-bottom: 3rem;
	transform: translateX(-50%);
}
.about-story p {
	margin-bottom: 1.25rem;
}
@media (max-width: 781px) {
	.photo-banner img {
		height: 300px;
	}
	.about-welcome {
		gap: 1.5rem;
	}
	.about-factors {
		flex-wrap: wrap;
	}
	.about-factors .feature-item {
		flex: 1 1 40%;
	}
}

/* Services page ------------------------------------------------------------ */
.services-intro {
	max-width: 760px;
	margin: 3rem auto 3.5rem;
	text-align: center;
}
.services-intro__lead {
	color: #5a6b76;
	font-size: 1.1rem;
	line-height: 1.75;
	margin: 0 auto 1.5rem;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
	width: min(1160px, calc(100vw - 3rem));
	max-width: none;
	margin-left: 50%;
	margin-bottom: 3.5rem;
	transform: translateX(-50%);
}
.service-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #eef1f3;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(12, 27, 39, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(12, 27, 39, 0.14);
}
.service-card__image {
	margin: 0;
}
.service-card__image img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	display: block;
}
.service-card__body {
	padding: 1.5rem 1.5rem 1.75rem;
}
.service-card__body h3 {
	color: #2c3e50;
	font-size: 1.25rem;
	margin: 0 0 0.6rem;
}
.service-card__body p {
	color: #5a6b76;
	line-height: 1.65;
	margin: 0;
}
.services-why {
	margin: 0 calc(50% - 50vw) 3.5rem;
	width: 100vw;
	background: #f6f6f6;
	padding: 3.5rem 1.5rem;
}
.services-why__inner {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}
.services-why__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
	margin-top: 2rem;
}
.services-why .feature-item {
	max-width: 280px;
}
.services-why .feature-item h4 {
	color: #2c3e50;
	font-size: 1.1rem;
	margin: 0 0 0.4rem;
}
.services-why .feature-item p:not(.feature-item__icon) {
	color: #5a6b76;
	line-height: 1.6;
	margin: 0;
}
.services-why .feature-item:nth-child(2) .feature-item__icon {
	color: #6dc82b;
}
.services-why .feature-item:nth-child(1) .feature-item__icon {
	color: #087dc2;
}
.services-why .feature-item:nth-child(3) .feature-item__icon {
	color: #e1a100;
}
.services-cta {
	max-width: 720px;
	margin: 0 auto 3rem;
	text-align: center;
}
.services-cta__title {
	color: #2c3e50;
	margin: 0 0 0.75rem;
}
.services-cta p {
	color: #5a6b76;
	margin: 0 0 1.5rem;
}
@media (max-width: 900px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

/* Packages page ------------------------------------------------------------ */
.packages-intro {
	max-width: 760px;
	margin: 3rem auto;
	text-align: center;
}
.packages-intro__lead {
	color: #5a6b76;
	font-size: 1.1rem;
	line-height: 1.75;
	margin: 0 auto;
}
.packages-how {
	margin: 0 calc(50% - 50vw) 3.5rem;
	width: 100vw;
	background: #f6f6f6;
	padding: 3.5rem 1.5rem;
}
.packages-how__inner {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}
.packages-how__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
	margin-top: 2rem;
}
.packages-how .feature-item {
	max-width: 280px;
}
.packages-how .feature-item h4 {
	color: #2c3e50;
	font-size: 1.1rem;
	margin: 0 0 0.4rem;
}
.packages-how .feature-item p:not(.feature-item__icon) {
	color: #5a6b76;
	line-height: 1.6;
	margin: 0;
}
.packages-how .feature-item:nth-child(1) .feature-item__icon {
	color: #087dc2;
}
.packages-how .feature-item:nth-child(2) .feature-item__icon {
	color: #6dc82b;
}
.packages-how .feature-item:nth-child(3) .feature-item__icon {
	color: #e1a100;
}
.packages-inquiry {
	max-width: 720px;
	margin: 0 auto 3rem;
	text-align: center;
}
.packages-inquiry__title {
	color: #2c3e50;
	margin: 0 0 0.5rem;
}
.packages-inquiry__lead {
	color: #5a6b76;
	margin: 0 0 2rem;
}
.packages-inquiry__note {
	color: #7c8a94;
	font-size: 0.9rem;
	margin-top: 1.25rem;
}
.packages-form .wpcf7-form {
	max-width: 680px;
	margin: 0 auto;
	padding: 2.5rem;
	text-align: left;
}
.packages-form .wpcf7-form-control:not(.wpcf7-checkbox):not(.wpcf7-radio):not([type="submit"]) {
	max-width: 100%;
}
.packages-form .form-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.packages-form .form-row > p {
	display: contents;
}
.packages-form .form-row > label,
.packages-form .form-row > p > label {
	flex: 1 1 150px;
}
.packages-form .form-row > p > br {
	display: none;
}
.packages-form .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1rem;
}
.packages-form .wpcf7-checkbox .wpcf7-list-item {
	margin: 0;
}
.packages-form .wpcf7-checkbox .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0.5rem 1rem;
	border: 1px solid #d0d5db;
	border-radius: 999px;
	cursor: pointer;
	text-transform: none;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0;
	color: #2c3e50;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.packages-form .wpcf7-checkbox .wpcf7-list-item input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.packages-form .wpcf7-checkbox .wpcf7-list-item:has(input:checked) label {
	background: #6dc82b;
	border-color: #6dc82b;
	color: #ffffff;
}
.packages-form .wpcf7-checkbox .wpcf7-list-item:has(input:focus-visible) label {
	outline: 2px solid #087dc2;
	outline-offset: 2px;
}
.packages-form .wpcf7-checkbox .wpcf7-list-item-label {
	margin: 0;
}
.packages-form .wpcf7-quiz-label {
	display: none;
}
@media (max-width: 600px) {
	.packages-form .form-row {
		flex-direction: column;
		gap: 0;
	}
}

/* Packages page — Cloudflare Turnstile widget spacing ---------------------- */
.packages-form .cf7-cf-turnstile {
	margin-top: 1.25rem !important;
	margin-bottom: 0.5rem !important;
}

/* Gallery page ------------------------------------------------------------ */
.gallery-intro {
	max-width: 760px;
	margin: 3rem auto;
	text-align: center;
}
.gallery-intro__lead {
	color: #5a6b76;
	font-size: 1.1rem;
	line-height: 1.75;
	margin: 0 auto;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
	width: min(1160px, calc(100vw - 3rem));
	max-width: none;
	margin-left: 50%;
	margin-bottom: 3.5rem;
	transform: translateX(-50%);
}
.gallery-grid .gallery-item {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
}
.gallery-grid .gallery-item img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.gallery-grid .gallery-item::after {
	content: "\f00e";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #ffffff;
	background: rgba(12, 27, 39, 0.35);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.gallery-grid .gallery-item:hover img {
	transform: scale(1.06);
}
.gallery-grid .gallery-item:hover::after {
	opacity: 1;
}
body.gallery-lightbox-open {
	overflow: hidden;
}
.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(9, 12, 16, 0.92);
	padding: 1rem;
}
.gallery-lightbox.is-open {
	display: flex;
}
.gallery-lightbox__stage {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 94vw;
}
.gallery-lightbox__img {
	max-width: 94vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.gallery-lightbox__caption {
	position: absolute;
	left: 50%;
	bottom: 0.5rem;
	transform: translateX(-50%);
	max-width: 90vw;
	color: #d6dde2;
	font-size: 0.9rem;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.gallery-lightbox__counter {
	position: absolute;
	top: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	color: #d6dde2;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.25);
}
.gallery-lightbox__close {
	top: 1rem;
	right: 1.25rem;
	width: 44px;
	height: 44px;
	font-size: 1.75rem;
	line-height: 1;
}
.gallery-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	font-size: 2rem;
	line-height: 1;
}
.gallery-lightbox__prev {
	left: 1.25rem;
}
.gallery-lightbox__next {
	right: 1.25rem;
}
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
	outline: 2px solid #6dc82b;
	outline-offset: 2px;
}
@media (max-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 600px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery-lightbox__nav {
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}
	.gallery-lightbox__prev {
		left: 0.5rem;
	}
	.gallery-lightbox__next {
		right: 0.5rem;
	}
}
@media (prefers-reduced-motion: reduce) {
	.gallery-grid .gallery-item img,
	.gallery-grid .gallery-item::after {
		transition: none;
	}
	.gallery-grid .gallery-item:hover img {
		transform: none;
	}
}
/* Contact page ------------------------------------------------------------ */
.contact-intro {
	max-width: 760px;
	margin: 3rem auto;
	text-align: center;
}
.contact-intro__lead {
	color: #5a6b76;
	font-size: 1.1rem;
	line-height: 1.75;
	margin: 0 auto;
}
.contact-block {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 3rem;
	align-items: start;
	width: min(1160px, calc(100vw - 3rem));
	max-width: none;
	margin-left: 50%;
	margin-bottom: 3.5rem;
	transform: translateX(-50%);
}
.contact-panel {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.contact-info-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #eef1f3;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(12, 27, 39, 0.06);
	padding: 1.5rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-info-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(12, 27, 39, 0.12);
}
.contact-info-item__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.1rem;
}
.contact-info-item:nth-child(1) .contact-info-item__icon {
	background: #087dc2;
}
.contact-info-item:nth-child(2) .contact-info-item__icon {
	background: #6dc82b;
}
.contact-info-item:nth-child(3) .contact-info-item__icon {
	background: #2c3e50;
}
.contact-info-item:nth-child(4) .contact-info-item__icon {
	background: #e1a100;
}
.contact-info-item__text h3 {
	color: #2c3e50;
	font-size: 1.05rem;
	margin: 0 0 0.25rem;
}
.contact-info-item__text p {
	color: #5a6b76;
	line-height: 1.65;
	margin: 0;
}
.contact-info-item__text a {
	color: #087dc2;
	text-decoration: none;
}
.contact-info-item__text a:hover {
	text-decoration: underline;
}
.contact-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0.25rem 0 0;
}
.contact-pills a.contact-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.contact-pills a.contact-pill:hover {
	opacity: 0.88;
}
.contact-form h3 {
	color: #2c3e50;
	margin: 0 0 1rem;
}
.contact-form .wpcf7-form {
	max-width: 100%;
	margin: 0;
}
.contact-form .wpcf7-form-control:not(.wpcf7-checkbox):not(.wpcf7-radio):not([type="submit"]) {
	max-width: 100%;
}
.contact-form .cf7-cf-turnstile {
	margin-top: 1rem !important;
	margin-bottom: 0.5rem !important;
}
.contact-map {
	width: min(1160px, calc(100vw - 3rem));
	max-width: none;
	margin-left: 50%;
	margin-bottom: 3rem;
	transform: translateX(-50%);
}
.contact-map iframe {
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(12, 27, 39, 0.12);
	display: block;
}
@media (max-width: 782px) {
	.contact-block {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}
