/* ==========================================================================
   Elthuraya Aviation — Widget Styles
   RTL-safe: uses logical properties (inline-start/end, block-start/end).
   ========================================================================== */

/* ---------- Shared ---------- */
.ela-header__container,
.ela-footer__container {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 20px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.ela-header {
	position: relative;
	width: 100%;
	z-index: 100;
}

.ela-header--sticky {
	position: sticky;
	inset-block-start: 0;
}

/* Top bar */
.ela-header__topbar {
	background: #ffffff;
	color: #222323;
	border-block-end: 1px solid #eee;
}

.ela-header__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.ela-header__topbar-info,
.ela-header__lang {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.ela-header__topbar-icon,
.ela-header__lang-icon {
	width: 18px;
	height: auto;
}

.ela-header__lang {
	position: relative;
}

.ela-header__lang-select {
	background: transparent;
	border: 0;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	padding-inline-end: 16px;
	cursor: pointer;
	appearance: none;
}

.ela-header__lang .ela-chevron-down::before {
	content: "\25BE";
	display: inline-block;
	margin-inline-start: 4px;
	font-size: 0.8em;
}

/* Inline EN | AR switcher */
.ela-header__lang--inline {
	gap: 6px;
}
.ela-header__lang-item {
	color: inherit;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: color 0.2s ease;
}
.ela-header__lang-item:hover,
.ela-header__lang-item:focus-visible {
	color: var(--ela-primary, #dfa432);
	outline: none;
}
.ela-header__lang-item.is-active {
	color: var(--ela-primary, #dfa432);
}
.ela-header__lang-divider {
	color: rgba(0, 0, 0, 0.35);
	user-select: none;
}

/* Main header */
.ela-header__main {
	background: #222323;
	color: #fff;
}

.ela-header__main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ela-header__logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ela-header__nav {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
	justify-content: flex-end;
}

.ela-header__menu,
.elementor-widget-ela-header .ela-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	/* Divider tokens — overridden by widget controls */
	--ela-menu-divider-w: 1px;
	--ela-menu-divider-c: #ca9127;
	--ela-menu-divider-h: 33px;
	--ela-menu-divider-r: 50px;
}

.ela-header__menu > li {
	position: relative;
	display: flex;
	align-items: center;
}

.ela-header__menu > li:not(:last-child)::after {
	content: '';
	position: absolute;
	height: var(--ela-menu-divider-h, 33px);
	width: var(--ela-menu-divider-w, 1px);
	border-radius: var(--ela-menu-divider-r, 50px);
	background: var(--ela-menu-divider-c, #ca9127);
	inset-inline-end: 0;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.ela-header__menu a,
.elementor-widget-ela-header .ela-header__menu a {
	display: inline-block;
	padding-block: 10px;
	padding-inline: 22px;
	text-decoration: none;
	color: inherit;
	font-family: inherit;
	transition: color 0.2s ease;
}

.ela-header__menu a:hover,
.ela-header__menu .current-menu-item > a,
.ela-header__menu .current-menu-ancestor > a {
	color: #ca9127;
}

/* Submenu */
.ela-header__menu .sub-menu {
	position: absolute;
	inset-block-start: 100%;
	inset-inline-start: 0;
	background: #fff;
	min-width: 200px;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.2s ease;
	z-index: 10;
}

.ela-header__menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ela-header__menu .sub-menu a {
	display: block;
	padding: 8px 16px;
}

/* CTA */
.ela-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hamburger */
.ela-header__hamburger {
	display: none;
	background: transparent;
	border: 0;
	padding: 8px;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
}

.ela-header__hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--ela-primary, #dfa432);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.ela-header__hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ela-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.ela-header__hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer
 * The drawer is reparented to <body> by JS to escape any transformed
 * Elementor ancestor (which would break `position: fixed`). Both physical
 * and logical properties are set so we work in every browser regardless
 * of logical-property support. */
.ela-header__drawer {
	position: fixed !important;
	top: 0;
	bottom: 0;
	right: 0;
	inset-block: 0;
	inset-inline-end: 0;
	width: min(320px, 80vw);
	inline-size: min(320px, 80vw);
	height: 100vh;
	background: var(--ela-near-black, #131313);
	padding: 56px 24px 24px;
	transform: translateX(100%);
	transition: transform 0.3s ease, visibility 0.3s ease;
	z-index: 100000;
	overflow-y: auto;
	visibility: hidden;
	will-change: transform;
	box-sizing: border-box;
}

[dir="rtl"] .ela-header__drawer,
:lang(ar) .ela-header__drawer,
.ela-header__drawer.is-rtl {
	right: auto !important;
	left: 0 !important;
	inset-inline-end: auto !important;
	inset-inline-start: 0 !important;
	transform: translateX(-100%);
}

.ela-header__drawer.is-open {
	transform: translateX(0) !important;
	visibility: visible;
}

.ela-header__drawer-close {
	position: absolute;
	top: 12px;
	right: 16px;
	inset-block-start: 12px;
	inset-inline-end: 16px;
	background: transparent;
	border: 0;
	color: var(--ela-primary, #dfa432);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	z-index: 1;
}
.ela-header__drawer-close:hover,
.ela-header__drawer-close:focus {
	color: var(--ela-secondary, #ca9127);
	outline: none;
}

[dir="rtl"] .ela-header__drawer-close,
:lang(ar) .ela-header__drawer-close,
.ela-header__drawer.is-rtl .ela-header__drawer-close {
	right: auto !important;
	left: 16px !important;
	inset-inline-end: auto !important;
	inset-inline-start: 16px !important;
}

/* Arabic drawer: panel slides in from the left edge, but its content
 * (menu items) should still read left-aligned for visual consistency
 * with the English drawer. The Arabic glyphs themselves still render
 * right-to-left within a line — only the line alignment is forced left. */
[dir="rtl"] .ela-header__drawer,
[dir="rtl"] .ela-header__drawer * {
	text-align: left;
}

.ela-header__drawer-menu,
.ela-header__drawer .ela-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.ela-header__drawer-menu li,
.ela-header__drawer .ela-menu li {
	border-block-end: 1px solid var(--ela-primary, #dfa432);
	text-align: left;
}

.ela-header__drawer a {
	display: block;
	padding: 14px 0;
	color: #fff;
	text-decoration: none;
	text-align: left;
	transition: color 0.2s ease;
}

.ela-header__backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 99999;
	pointer-events: none;
}

.ela-header__backdrop.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Mobile breakpoint — driven by inline --ela-mobo-bp */
@media (max-width: 991.98px) {
	.ela-header__nav {
		display: none;
	}
	.ela-header__hamburger {
		display: inline-flex;
	}
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ela-footer {
	width: 100%;
}

.ela-footer__top {
	background: var(--ela-near-black, #131313);
	color: #c4c4c4;
}

.ela-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 32px;
	align-items: flex-start;
}

@media (max-width: 991.98px) {
	.ela-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575.98px) {
	.ela-footer__grid {
		grid-template-columns: 1fr;
	}
}

.ela-footer__brand-logo {
	margin-block-end: 18px;
}

.ela-footer__brand-logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ela-footer__brand-text {
	line-height: 1.7;
	margin: 0;
}

.ela-footer__brand-text p {
	margin: 0 0 12px;
}

.ela-footer__col-title {
	margin: 0 0 18px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
}

.ela-footer__links ul,
.ela-footer__links .ela-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ela-footer__links li {
	margin-block-end: 10px;
}

.ela-footer__links a {
	text-decoration: none;
	transition: color 0.2s ease;
}

.ela-footer__newsletter {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	max-width: 380px;
	background: transparent;
	border-radius: 0;
	overflow: visible;
}

.ela-footer__newsletter input {
	width: 100%;
	min-width: 0;
	height: 48px;
	padding: 12px 16px;
	background: rgb(35, 36, 36);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	box-sizing: border-box;
}
.ela-footer__newsletter input::placeholder {
	color: rgba(255, 255, 255, 0.55);
	opacity: 1;
}
.ela-footer__newsletter input:focus,
.ela-footer__newsletter input:active {
	border-color: #ffffff;
	background: rgb(35, 36, 36);
}

.ela-footer__newsletter button {
	align-self: flex-end;
	min-width: 130px;
	height: 44px;
	padding: 0 28px;
	background: rgb(208, 153, 35);
	color: #ffffff;
	border: 1px solid rgb(208, 153, 35);
	border-radius: 4px;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ela-footer__newsletter button:hover,
.ela-footer__newsletter button:focus-visible {
	background: #ffffff;
	color: rgb(208, 153, 35);
	border-color: #ffffff;
	outline: none;
}

.ela-footer__newsletter.is-success input,
.ela-footer__newsletter.is-success button {
	opacity: 0.7;
	pointer-events: none;
}

/* RTL — button stays on the trailing edge of the column */
[dir="rtl"] .ela-footer__newsletter button {
	align-self: flex-start;
}

/* Copyright */
.ela-footer__copyright {
	background: #0a0a0a;
}

.ela-footer__copyright-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.ela-footer__copyright p {
	margin: 0;
	font-size: 13px;
}

.ela-footer__copyright-logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

@media (max-width: 575.98px) {
	.ela-footer__copyright-inner {
		flex-direction: column;
		text-align: center;
	}
}

/* Arabic / RTL tweaks */
[dir="rtl"] .ela-header__lang .ela-chevron-down::before {
	margin-inline-start: 4px;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.ela-hero {
	position: relative;
	width: 100%;
}

.ela-hero__swiper {
	position: relative;
	overflow: hidden;
}

/* Single-slide mode: hide carousel chrome, neutralise grab cursor. */
.ela-hero--single .ela-hero__prev,
.ela-hero--single .ela-hero__next,
.ela-hero--single .ela-hero__dots {
	display: none !important;
}
.ela-hero--single .ela-hero__swiper,
.ela-hero--single .swiper-slide {
	cursor: default;
}

.ela-hero__slide {
	position: relative;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 600px;
}

.ela-hero__slide--align-start   .ela-hero__content { margin-inline-end: auto; text-align: start; }
.ela-hero__slide--align-center  .ela-hero__content { margin-inline: auto;     text-align: center; }
.ela-hero__slide--align-end     .ela-hero__content { margin-inline-start: auto; text-align: end; }

.ela-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.ela-hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding: 40px 16px;
}

.ela-hero__content {
	max-width: 720px;
}

.ela-hero__heading {
	margin: 0;
	line-height: 1.1;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ela-hero__l1,
.ela-hero__l2,
.ela-hero__l3,
.elementor-widget-ela-hero-slider .ela-hero__l1,
.elementor-widget-ela-hero-slider .ela-hero__l2,
.elementor-widget-ela-hero-slider .ela-hero__l3 {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1.1;
}

@media (max-width: 991.98px) {
	.ela-hero__l1, .ela-hero__l2, .ela-hero__l3,
	.elementor-widget-ela-hero-slider .ela-hero__l1,
	.elementor-widget-ela-hero-slider .ela-hero__l2,
	.elementor-widget-ela-hero-slider .ela-hero__l3 {
		font-size: 44px;
	}
}
@media (max-width: 575.98px) {
	.ela-hero__l1, .ela-hero__l2, .ela-hero__l3,
	.elementor-widget-ela-hero-slider .ela-hero__l1,
	.elementor-widget-ela-hero-slider .ela-hero__l2,
	.elementor-widget-ela-hero-slider .ela-hero__l3 {
		font-size: 32px;
	}
}

/* Slide-change animation: lines & button rise from below with fade */
.ela-hero__l1,
.ela-hero__l2,
.ela-hero__l3,
.ela-hero__btn {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.swiper-slide-active .ela-hero__l1,
.swiper-slide-active .ela-hero__l2,
.swiper-slide-active .ela-hero__l3,
.swiper-slide-active .ela-hero__btn {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger per line */
.swiper-slide-active .ela-hero__l1  { transition-delay: 0.15s; }
.swiper-slide-active .ela-hero__l2  { transition-delay: 0.30s; }
.swiper-slide-active .ela-hero__l3  { transition-delay: 0.45s; }
.swiper-slide-active .ela-hero__btn { transition-delay: 0.60s; }

.ela-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	margin-block-start: 24px;
}

/* Arrows */
.ela-hero__arrow {
	position: absolute;
	inset-block-start: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

/* Icon variant — filled box */
.ela-hero__arrow--icon {
	width: 48px;
	height: 48px;
	background: rgba(19, 19, 19, 0.7);
	color: #fff;
}

/* Image variant — plain image, natural size, no box, no hover */
.ela-hero__arrow--image,
.ela-hero__arrow--image:hover,
.ela-hero__arrow--image:focus,
.ela-hero__arrow--image:active {
	width: auto !important;
	height: auto !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	color: inherit !important;
}

.ela-hero__arrow--image img {
	display: block;
	width: auto;
	height: auto;
	max-width: none;
	transition: none;
}

.ela-hero__arrow--image:hover img,
.ela-hero__arrow--image:focus img {
	transform: none;
}

.ela-hero__prev { inset-inline-start: 0; }
.ela-hero__next { inset-inline-end: 0; }

/* Flip icons/images for RTL so "prev" still points toward the logical start */
[dir="rtl"] .ela-hero__prev i,
[dir="rtl"] .ela-hero__prev svg,
[dir="rtl"] .ela-hero__prev img,
[dir="rtl"] .ela-hero__next i,
[dir="rtl"] .ela-hero__next svg,
[dir="rtl"] .ela-hero__next img {
	transform: scaleX(-1);
}

.ela-hero__arrow.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

/* Dots */
.ela-hero__dots {
	position: absolute;
	inset-block-end: 28px;
	inset-inline: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 0;
}

.ela-hero__dots--start  { justify-content: flex-start; padding-inline-start: 40px; }
.ela-hero__dots--center { justify-content: center; }
.ela-hero__dots--end    { justify-content: flex-end; padding-inline-end: 40px; }

.ela-hero__dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	opacity: 1;
	margin-inline: 4px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.ela-hero__dots .swiper-pagination-bullet-active {
	background: var(--ela-primary, #dfa432);
	transform: scale(1.15);
}

/* Fade effect support */
.ela-hero__swiper.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.ela-hero__swiper.swiper-fade .swiper-slide-active {
	pointer-events: auto;
}

@media (max-width: 767.98px) {
	.ela-hero__slide { min-height: 420px; }
	.ela-hero__arrow { width: 40px; height: 40px; }
}

/* ==========================================================================
   BOOKING WIDGET
   ========================================================================== */
.ela-booking,
.elementor-widget-ela-booking .ela-booking {
	position: relative;
	font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	display: flex;
	flex-direction: column;
	overflow: hidden; /* keeps tabs bleeding to corners when border-radius is applied */
}

/* Tabs bar — full bleed to top/left/right of the container */
.ela-booking__tabs {
	display: grid;
	grid-template-columns: repeat(var(--ela-booking-tabs, 4), 1fr);
	margin: 0;
	width: 100%;
}

.ela-booking__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 16px;
	background: #bf8822;
	color: #fff;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.2s ease;
	position: relative;
}

.ela-booking__tab + .ela-booking__tab::before {
	content: '';
	position: absolute;
	inset-block: 18px;
	inset-inline-start: 0;
	width: 1px;
	background: #8f6619;
}

.ela-booking__tab img {
	width: 26px;
	height: 26px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.ela-booking__tab:hover,
.ela-booking__tab.is-active {
	background: #90671a;
}

/* Body */
.ela-booking__body {
	background: #f5f5f5;
	padding: 40px;
}

@media (max-width: 575.98px) {
	.ela-booking__body {
		padding: 20px;
	}
}

.ela-booking__body.is-hidden {
	display: none;
}

/* Panels */
.ela-booking__panels {
	position: relative;
	margin-block-start: 0;
}

/* Click shield — invisible overlay, catches any click on the demo form area */
.ela-booking__click-shield {
	position: absolute;
	inset: 0;
	z-index: 10;
	cursor: pointer;
	background: transparent;
}

.ela-booking__panel {
	display: none;
}

.ela-booking__panel.is-active {
	display: block;
	animation: elaBookingFade 0.25s ease;
}

@keyframes elaBookingFade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Flat grids per tab — every cell aligns by row */
.ela-booking__t1 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: minmax(48px, auto);
	gap: 14px 16px;
	align-items: center;
}

.ela-booking__t2 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 14px 16px;
	align-items: center;
}

.ela-booking__t4 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 14px 16px;
	align-items: center;
}

.ela-booking__cell {
	min-width: 0;
}

/* Row 1 col 3 (Tab 1 radios) — align radios in-line */
.ela-booking__cell--radios {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-inline-start: 4px;
}

/* AED + Promo split (narrow select + flexible text) */
.ela-booking__cell--split {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 8px;
	align-items: center;
}

.ela-booking__t2 .ela-booking__cell--split {
	grid-template-columns: 1fr 1fr;
}

/* Passengers cell — label on top, 3 equal selects below */
.ela-booking__cell--passengers {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ela-booking__triple {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.ela-booking__label {
	display: block;
	font-size: 12px;
	color: #6b6b6b;
	margin-inline-start: 4px;
	line-height: 1;
}

.ela-booking__cell--empty { min-height: 48px; }

/* Field wrappers */
.ela-booking__field-wrap {
	position: relative;
	width: 100%;
}

.ela-booking__field {
	display: block;
	width: 100%;
	height: 48px;
	padding: 0 16px;
	padding-inline-end: 36px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
	font-family: inherit;
	font-size: 14px;
	color: #222323;
	line-height: 1;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input.ela-booking__field {
	padding-inline-end: 16px;
}

.ela-booking__triple .ela-booking__field {
	padding-inline: 10px;
	padding-inline-end: 24px;
	font-size: 13px;
}

.ela-booking__field:focus {
	border-color: #d4992b;
	box-shadow: 0 0 0 2px rgba(212, 153, 43, 0.15);
}

.ela-booking__field::placeholder {
	color: #9a9a9a;
}

/* Chevron — properly centered */
.ela-booking__chevron {
	position: absolute;
	inset-inline-end: 14px;
	inset-block-start: 50%;
	width: 8px;
	height: 8px;
	border-inline-end: 2px solid #9a9a9a;
	border-block-end: 2px solid #9a9a9a;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.ela-booking__triple .ela-booking__chevron {
	inset-inline-end: 10px;
	width: 6px;
	height: 6px;
}

/* Radios */
.ela-booking__radios--top {
	display: flex;
	gap: 32px;
	align-items: center;
	margin-block-end: 18px;
}

.ela-booking__radio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ela-booking__radio input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: #222323;
	cursor: pointer;
}

.ela-booking__radio label {
	color: #222323;
	font-size: 14px;
	cursor: pointer;
	line-height: 1;
}

/* Buttons */
.ela-booking__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 24px;
	background: #d4992b;
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-family: inherit;
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

.ela-booking__btn:hover {
	background: #ca9127;
}

.ela-booking__btn--block {
	width: 100%;
}

/* Hide link */
.ela-booking__hide-wrap {
	display: flex;
	justify-content: flex-end;
	margin-block-start: 16px;
}

.ela-booking__hide {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 0;
	color: #222323;
	font-family: inherit;
	font-size: 13px;
	cursor: pointer;
	padding: 4px 0;
}

.ela-booking__hide-icon {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #2a2a2a;
	color: #fff;
	position: relative;
	transition: transform 0.25s ease;
}

.ela-booking__hide-icon::before {
	content: '';
	position: absolute;
	inset-block-start: 50%;
	inset-inline-start: 50%;
	width: 6px;
	height: 6px;
	border-inline-start: 2px solid #fff;
	border-block-start: 2px solid #fff;
	transform: translate(-50%, -30%) rotate(45deg);
}

.ela-booking__body.is-hidden .ela-booking__hide-icon {
	transform: rotate(180deg);
}

/* Popup */
.ela-booking__popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.ela-booking__popup.is-open {
	display: flex;
}

.ela-booking__popup-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(2px);
}

.ela-booking__popup-box {
	position: relative;
	background: #3a3a3a;
	color: #fff;
	padding: 40px;
	max-width: 640px;
	width: 100%;
	border-radius: 12px;
	text-align: center;
	line-height: 1.7;
	animation: elaBookingPopIn 0.25s ease;
}

@keyframes elaBookingPopIn {
	from { opacity: 0; transform: translateY(20px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ela-booking__popup-close {
	position: absolute;
	inset-block-start: -14px;
	inset-inline-end: -14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #d4992b;
	color: #fff;
	border: 0;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ela-booking__popup-close:hover,
.ela-booking__popup-close:focus,
.ela-booking__popup-close:active {
	background: #d4992b;
	transform: none;
	color: #fff;
	outline: none;
}

.ela-booking__hide:hover,
.ela-booking__hide:focus,
.ela-booking__hide:active {
	color: inherit;
	background: transparent;
	outline: none;
}

.ela-booking__hide:hover .ela-booking__hide-icon,
.ela-booking__hide:focus .ela-booking__hide-icon {
	background: #2a2a2a;
}

.ela-booking__popup-message {
	margin: 0;
}

.ela-booking__popup-message strong {
	display: block;
	margin-block-start: 14px;
}

/* Responsive */
@media (max-width: 991.98px) {
	.ela-booking__t1,
	.ela-booking__t2,
	.ela-booking__t4 {
		grid-template-columns: 1fr 1fr;
	}
	.ela-booking__cell--empty { display: none; }
}

@media (max-width: 575.98px) {
	.ela-booking__tabs { grid-template-columns: 1fr 1fr; }
	.ela-booking__tab { padding: 12px 8px; font-size: 13px; }
	.ela-booking__tab img { width: 22px; height: 22px; }
	.ela-booking__t1,
	.ela-booking__t2,
	.ela-booking__t4 {
		grid-template-columns: 1fr;
	}
	.ela-booking__triple { grid-template-columns: 1fr 1fr; }
	.ela-booking__cell--split { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.ela-about {
	position: relative;
	background: #222323;
	color: #ffffff;
	padding: 80px 24px;
}

.ela-about__container {
	max-width: 1200px;
	margin-inline: auto;
}

.ela-about__grid {
	display: grid;
	gap: 48px;
	align-items: center;
}

/* Split ratios */
.ela-about--ratio-1-1 .ela-about__grid { grid-template-columns: 1fr 1fr; }
.ela-about--ratio-2-3 .ela-about__grid { grid-template-columns: 2fr 3fr; }
.ela-about--ratio-3-2 .ela-about__grid { grid-template-columns: 3fr 2fr; }
.ela-about--ratio-1-2 .ela-about__grid { grid-template-columns: 1fr 2fr; }
.ela-about--ratio-2-1 .ela-about__grid { grid-template-columns: 2fr 1fr; }

/* Image position — swap grid column order */
.ela-about--image-start .ela-about__image   { grid-column: 1; }
.ela-about--image-start .ela-about__content { grid-column: 2; }
.ela-about--image-end   .ela-about__image   { grid-column: 2; }
.ela-about--image-end   .ela-about__content { grid-column: 1; }

.ela-about__image {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
}

.ela-about__image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ela-about__content {
	min-width: 0;
}

.ela-about__heading,
.elementor-widget-ela-about .ela-about__heading {
	margin: 0;
	color: #ffffff;
	font-weight: 700;
	font-size: 52px;
	line-height: 1.2;
	text-transform: capitalize;
}

.ela-about__body,
.elementor-widget-ela-about .ela-about__body,
.ela-about__body p {
	margin: 0;
	color: #ffffff;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.7;
	text-align: justify;
	text-align-last: start;
}

.ela-about__body p {
	margin: 0;
}

.ela-about__body > :first-child {
	margin-block-start: 30px;
}

.ela-about__body p + p {
	margin-block-start: 16px;
}

@media (max-width: 991.98px) {
	.ela-about__heading,
	.elementor-widget-ela-about .ela-about__heading {
		font-size: 40px;
	}
}

@media (max-width: 575.98px) {
	.ela-about__heading,
	.elementor-widget-ela-about .ela-about__heading {
		font-size: 32px;
	}
}

/* Scroll-in animations */
.ela-about--animate .ela-about__image,
.ela-about--animate .ela-about__content {
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

.ela-about--animate.ela-about--image-start .ela-about__image { transform: translateX(-40px); }
.ela-about--animate.ela-about--image-end   .ela-about__image { transform: translateX(40px); }
.ela-about--animate .ela-about__content                       { transform: translateY(30px); }

[dir="rtl"] .ela-about--animate.ela-about--image-start .ela-about__image { transform: translateX(40px); }
[dir="rtl"] .ela-about--animate.ela-about--image-end   .ela-about__image { transform: translateX(-40px); }

.ela-about--animate.is-visible .ela-about__image,
.ela-about--animate.is-visible .ela-about__content {
	opacity: 1;
	transform: none;
}

.ela-about--animate.is-visible .ela-about__content { transition-delay: 0.15s; }

/* Responsive */
@media (max-width: 991.98px) {
	.ela-about__grid,
	.ela-about--ratio-1-1 .ela-about__grid,
	.ela-about--ratio-2-3 .ela-about__grid,
	.ela-about--ratio-3-2 .ela-about__grid,
	.ela-about--ratio-1-2 .ela-about__grid,
	.ela-about--ratio-2-1 .ela-about__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.ela-about--image-start .ela-about__image,
	.ela-about--image-start .ela-about__content,
	.ela-about--image-end .ela-about__image,
	.ela-about--image-end .ela-about__content {
		grid-column: 1;
	}
	/* On mobile, keep image above content regardless of position setting */
	.ela-about--image-end .ela-about__image   { grid-row: 1; }
	.ela-about--image-end .ela-about__content { grid-row: 2; }
}

/* ==========================================================================
   BANNER (full-bleed background with overlay text)
   ========================================================================== */
.ela-banner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 500px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	color: #ffffff;
}

.ela-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

[dir="rtl"] .ela-banner__overlay {
	background: linear-gradient(to left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

.ela-banner__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding: 80px 40px;
}

.ela-banner__content {
	max-width: 640px;
}

.ela-banner--pos-start  .ela-banner__content { margin-inline-end: auto; text-align: start; }
.ela-banner--pos-center .ela-banner__content { margin-inline: auto;     text-align: center; }
.ela-banner--pos-end    .ela-banner__content { margin-inline-start: auto; text-align: end; }

.ela-banner__heading,
.elementor-widget-ela-banner .ela-banner__heading {
	margin: 0;
	color: #ffffff;
	line-height: 1.15;
	font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.ela-banner__l1,
.elementor-widget-ela-banner .ela-banner__l1 {
	display: block;
	color: #ffffff;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.15;
}

.ela-banner__l2,
.elementor-widget-ela-banner .ela-banner__l2 {
	display: block;
	color: #ffffff;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.15;
}

.ela-banner__body,
.elementor-widget-ela-banner .ela-banner__body,
.ela-banner__body p {
	margin: 0;
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
}

.ela-banner__body {
	margin-block-start: 24px;
}

.ela-banner__body p + p {
	margin-block-start: 12px;
}

/* Scroll-in animation */
.ela-banner--animate .ela-banner__heading,
.ela-banner--animate .ela-banner__body {
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

.ela-banner--animate .ela-banner__heading { transform: translateY(30px); }
.ela-banner--animate .ela-banner__body    { transform: translateY(-30px); }

.ela-banner--animate.is-visible .ela-banner__heading,
.ela-banner--animate.is-visible .ela-banner__body {
	opacity: 1;
	transform: none;
}

.ela-banner--animate.is-visible .ela-banner__body { transition-delay: 0.15s; }

/* Responsive */
@media (max-width: 991.98px) {
	.ela-banner__l1,
	.ela-banner__l2,
	.elementor-widget-ela-banner .ela-banner__l1,
	.elementor-widget-ela-banner .ela-banner__l2 {
		font-size: 36px;
	}
}

@media (max-width: 575.98px) {
	.ela-banner { min-height: 360px; }
	.ela-banner__l1,
	.ela-banner__l2,
	.elementor-widget-ela-banner .ela-banner__l1,
	.elementor-widget-ela-banner .ela-banner__l2 {
		font-size: 28px;
	}
	.ela-banner__overlay {
		background: rgba(0, 0, 0, 0.55);
	}
	[dir="rtl"] .ela-banner__overlay {
		background: rgba(0, 0, 0, 0.55);
	}
}

/* ==========================================================================
   QUOTE (image + quoted heading + body + signature)
   ========================================================================== */
.ela-quote {
	position: relative;
	background: #ffffff;
	padding: 80px 24px;
}

.ela-quote__container {
	max-width: 1200px;
	margin-inline: auto;
}

.ela-quote__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.ela-quote--ratio-1-1 .ela-quote__grid { grid-template-columns: 1fr 1fr; }
.ela-quote--ratio-2-3 .ela-quote__grid { grid-template-columns: 2fr 3fr; }
.ela-quote--ratio-3-2 .ela-quote__grid { grid-template-columns: 3fr 2fr; }

.ela-quote--image-start .ela-quote__image   { grid-column: 1; }
.ela-quote--image-start .ela-quote__content { grid-column: 2; }
.ela-quote--image-end   .ela-quote__image   { grid-column: 2; }
.ela-quote--image-end   .ela-quote__content { grid-column: 1; }

.ela-quote__image {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
}

.ela-quote__image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ela-quote__content {
	min-width: 0;
}

/* Heading with flanking icons */
.ela-quote__heading,
.elementor-widget-ela-quote .ela-quote__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 0 24px;
	color: #131313;
	font-weight: 700;
	font-size: 34px;
	line-height: 1.2;
	text-align: center;
}

.ela-quote__heading-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ela-quote__heading-icon img {
	display: block;
	width: 25px;
	height: auto;
}

.ela-quote__heading-icon i,
.ela-quote__heading-icon svg {
	display: inline-block;
	width: 25px;
	height: 25px;
	font-size: 25px;
	line-height: 1;
	color: #d4992b;
}

.ela-quote__heading-text {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ela-quote__heading-l1,
.ela-quote__heading-l2 {
	display: block;
}

/* Body */
.ela-quote__body,
.elementor-widget-ela-quote .ela-quote__body,
.ela-quote__body p {
	margin: 0;
	color: #222323;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	text-align: center;
}

.ela-quote__body {
	margin-block-end: 32px;
}

.ela-quote__body p + p {
	margin-block-start: 12px;
}

/* Signature block */
.ela-quote__sign {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.ela-quote__sign-image img {
	display: block;
	width: 120px;
	height: auto;
}

.ela-quote__sign-name,
.elementor-widget-ela-quote .ela-quote__sign-name {
	color: #131313;
	font-weight: 700;
	font-size: 16px;
}

.ela-quote__sign-role,
.elementor-widget-ela-quote .ela-quote__sign-role {
	color: #6b6b6b;
	font-weight: 400;
	font-size: 13px;
}

/* Scroll-in animations */
.ela-quote--animate .ela-quote__image,
.ela-quote--animate .ela-quote__content {
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

.ela-quote--animate.ela-quote--image-start .ela-quote__image { transform: translateX(-40px); }
.ela-quote--animate.ela-quote--image-end   .ela-quote__image { transform: translateX(40px); }
.ela-quote--animate .ela-quote__content                       { transform: translateY(30px); }

[dir="rtl"] .ela-quote--animate.ela-quote--image-start .ela-quote__image { transform: translateX(40px); }
[dir="rtl"] .ela-quote--animate.ela-quote--image-end   .ela-quote__image { transform: translateX(-40px); }

.ela-quote--animate.is-visible .ela-quote__image,
.ela-quote--animate.is-visible .ela-quote__content {
	opacity: 1;
	transform: none;
}

.ela-quote--animate.is-visible .ela-quote__content { transition-delay: 0.15s; }

/* Responsive */
@media (max-width: 991.98px) {
	.ela-quote__grid,
	.ela-quote--ratio-1-1 .ela-quote__grid,
	.ela-quote--ratio-2-3 .ela-quote__grid,
	.ela-quote--ratio-3-2 .ela-quote__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.ela-quote--image-start .ela-quote__image,
	.ela-quote--image-start .ela-quote__content,
	.ela-quote--image-end .ela-quote__image,
	.ela-quote--image-end .ela-quote__content {
		grid-column: 1;
	}
	.ela-quote--image-end .ela-quote__image   { grid-row: 1; }
	.ela-quote--image-end .ela-quote__content { grid-row: 2; }

	.ela-quote__heading,
	.elementor-widget-ela-quote .ela-quote__heading {
		font-size: 28px;
	}
}

@media (max-width: 575.98px) {
	.ela-quote__heading,
	.elementor-widget-ela-quote .ela-quote__heading {
		font-size: 24px;
	}
}

/* ==========================================================================
   VALUES (centered title + row of circle-icon items)
   ========================================================================== */
.ela-values {
	position: relative;
	background: #d4992b;
	padding: 80px 24px 100px;
}

.ela-values__container {
	max-width: 1200px;
	margin-inline: auto;
}

.ela-values__title,
.elementor-widget-ela-values .ela-values__title {
	margin: 0 0 20px;
	color: #ffffff;
	font-weight: 700;
	font-size: 44px;
	line-height: 1.2;
	text-align: center;
}

.ela-values__desc,
.elementor-widget-ela-values .ela-values__desc {
	margin: 0 auto 72px;
	max-width: 760px;
	color: #ffffff;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	text-align: center;
}

.ela-values__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

.ela-values__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ela-values__circle {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	transition:
		transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 0.45s ease;
}

.ela-values__item:hover .ela-values__circle {
	transform: translateY(-4px);
	box-shadow:
		0 0 0 8px rgba(255, 255, 255, 0.18),
		0 0 40px 14px rgba(255, 255, 255, 0.55);
}

.ela-values__icon {
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ela-values__item:hover .ela-values__icon {
	transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
	.ela-values__circle,
	.ela-values__icon { transition: none; }
	.ela-values__item:hover .ela-values__circle { transform: none; }
	.ela-values__item:hover .ela-values__icon { transform: none; }
}

.ela-values__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 100%;
	height: 100%;
}

.ela-values__icon img {
	display: block;
	width: 50%;
	height: auto;
	object-fit: contain;
}

.ela-values__icon i,
.ela-values__icon svg {
	display: inline-block;
	font-size: 34px;
	width: 34px;
	height: 34px;
	color: #131313;
	line-height: 1;
}

.ela-values__label,
.elementor-widget-ela-values .ela-values__label {
	margin-block-start: 20px;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ela-values__label-l1,
.ela-values__label-l2 {
	display: block;
}

/* Scroll-in stagger animation */
.ela-values--animate .ela-values__item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

.ela-values--animate.is-visible .ela-values__item {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 991.98px) {
	.ela-values__grid { grid-template-columns: repeat(3, 1fr); }
	.ela-values__title,
	.elementor-widget-ela-values .ela-values__title { font-size: 36px; }
}

@media (max-width: 575.98px) {
	.ela-values__grid { grid-template-columns: repeat(2, 1fr); }
	.ela-values__title,
	.elementor-widget-ela-values .ela-values__title { font-size: 28px; }
	.ela-values__desc,
	.elementor-widget-ela-values .ela-values__desc { margin-block-end: 48px; }
	.ela-values__circle { width: 72px; height: 72px; }
}

/* ==========================================================================
   FLEET (intro + slider with image → title → body per slide)
   ========================================================================== */
.ela-fleet {
	position: relative;
	background: #ffffff;
	padding: 80px 24px;
}

.ela-fleet__container {
	max-width: 1200px;
	margin-inline: auto;
}

/* Intro */
.ela-fleet__intro {
	margin-block-end: 48px;
	text-align: center;
}

.ela-fleet__intro-title,
.elementor-widget-ela-fleet .ela-fleet__intro-title {
	margin: 0 0 16px;
	color: #131313;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.2;
}

.ela-fleet__intro-desc,
.elementor-widget-ela-fleet .ela-fleet__intro-desc {
	margin: 0 auto;
	max-width: 780px;
	color: #6b6b6b;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
}

/* Slider */
.ela-fleet__slider {
	position: relative;
}

.ela-fleet__swiper {
	overflow: hidden;
}

.ela-fleet__slide {
	display: flex;
	flex-direction: column;
	padding: 0 40px;
	box-sizing: border-box;
}

.ela-fleet__image {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-block-end: 24px;
}

.ela-fleet__image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ela-fleet__title,
.elementor-widget-ela-fleet .ela-fleet__title {
	margin: 0 0 16px;
	color: #131313;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	text-align: center;
}

.ela-fleet__body,
.elementor-widget-ela-fleet .ela-fleet__body {
	margin: 0 auto;
	max-width: 760px;
	color: #6b6b6b;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	text-align: center;
}

/* Arrows — positioned on the image row by default */
.ela-fleet__arrow {
	position: absolute;
	z-index: 10;
	width: 42px;
	height: 42px;
	background: #1a1a1a;
	color: #ffffff;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ela-fleet__arrow i,
.ela-fleet__arrow svg {
	font-size: 14px;
	width: 14px;
	height: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	fill: currentColor;
}

.ela-fleet__arrow:hover {
	background: #d4992b;
}

.ela-fleet__prev { inset-inline-start: 0; }
.ela-fleet__next { inset-inline-end: 0; }

/* Arrow vertical anchor modes — the image + its spacing is roughly top half of the slide */
.ela-fleet--arrows-image .ela-fleet__arrow {
	/* Approximate image vertical center: 0 + image area. We anchor at 28% by default
	   (image is generally the top chunk of the slide). */
	inset-block-start: 28%;
	transform: translateY(-50%);
}

.ela-fleet--arrows-full .ela-fleet__arrow {
	inset-block-start: 50%;
	transform: translateY(-50%);
}

/* RTL icon flip so "prev" stays on the start side */
[dir="rtl"] .ela-fleet__prev i,
[dir="rtl"] .ela-fleet__prev svg,
[dir="rtl"] .ela-fleet__next i,
[dir="rtl"] .ela-fleet__next svg {
	transform: scaleX(-1);
}

.ela-fleet__arrow.swiper-button-disabled {
	opacity: 0.4;
	cursor: default;
}

/* Dots */
.ela-fleet__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-block-start: 24px;
}

.ela-fleet__dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #c4c4c4;
	border-radius: 50%;
	opacity: 1;
	margin-inline: 3px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.ela-fleet__dots .swiper-pagination-bullet-active {
	background: #d4992b;
	transform: scale(1.15);
}

/* Fade effect support */
.ela-fleet__swiper.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}
.ela-fleet__swiper.swiper-fade .swiper-slide-active {
	pointer-events: auto;
}

/* Responsive */
@media (max-width: 991.98px) {
	.ela-fleet__intro-title,
	.elementor-widget-ela-fleet .ela-fleet__intro-title { font-size: 30px; }
	.ela-fleet__title,
	.elementor-widget-ela-fleet .ela-fleet__title { font-size: 24px; }
	.ela-fleet__slide { padding: 0 56px; }
}

@media (max-width: 575.98px) {
	.ela-fleet { padding: 48px 16px; }
	.ela-fleet__intro-title,
	.elementor-widget-ela-fleet .ela-fleet__intro-title { font-size: 24px; }
	.ela-fleet__title,
	.elementor-widget-ela-fleet .ela-fleet__title { font-size: 22px; }
	.ela-fleet__slide { padding: 0 44px; }
	.ela-fleet__arrow { width: 36px; height: 36px; }
	.ela-fleet--arrows-image .ela-fleet__arrow { inset-block-start: 38%; }
}

/* ==========================================================================
   PARTNERS (logo carousel — multi-per-view)
   ========================================================================== */
.ela-partners {
	position: relative;
	background: #f5f5f5;
	padding: 80px 24px;
}

.ela-partners__container {
	max-width: 1200px;
	margin-inline: auto;
}

/* Intro */
.ela-partners__intro {
	margin-block-end: 48px;
	text-align: center;
}

.ela-partners__intro-title,
.elementor-widget-ela-partners .ela-partners__intro-title {
	margin: 0 0 16px;
	color: #131313;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.2;
}

.ela-partners__intro-desc,
.elementor-widget-ela-partners .ela-partners__intro-desc {
	margin: 0 auto;
	max-width: 780px;
	color: #6b6b6b;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
}

/* Slider */
.ela-partners__slider {
	position: relative;
}

.ela-partners__swiper {
	overflow: hidden;
}

.ela-partners__slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
}

.ela-partners__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 16px;
	text-decoration: none;
	transition: transform 0.25s ease;
}

.ela-partners__logo img {
	display: block;
	max-width: 100%;
	max-height: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Grayscale preset — greyscale by default, full color on hover */
.ela-partners--grayscale-yes .ela-partners__logo img {
	filter: grayscale(100%);
	opacity: 0.75;
	transition: filter 0.35s ease, opacity 0.35s ease;
}

.ela-partners--grayscale-yes .ela-partners__logo:hover img,
.ela-partners--grayscale-yes .ela-partners__logo:focus-visible img {
	filter: grayscale(0%);
	opacity: 1;
}

/* Continuous scroll mode */
.ela-partners--continuous .ela-partners__swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* Arrows */
.ela-partners__arrow {
	position: absolute;
	z-index: 10;
	inset-block-start: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #1a1a1a;
	color: #ffffff;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ela-partners__arrow i,
.ela-partners__arrow svg {
	font-size: 14px;
	width: 14px;
	height: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	fill: currentColor;
}

.ela-partners__arrow:hover {
	background: #d4992b;
}

.ela-partners__prev { inset-inline-start: -4px; }
.ela-partners__next { inset-inline-end: -4px; }

[dir="rtl"] .ela-partners__prev i,
[dir="rtl"] .ela-partners__prev svg,
[dir="rtl"] .ela-partners__next i,
[dir="rtl"] .ela-partners__next svg {
	transform: scaleX(-1);
}

.ela-partners__arrow.swiper-button-disabled {
	opacity: 0.4;
	cursor: default;
}

/* Dots */
.ela-partners__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-block-start: 32px;
}

.ela-partners__dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #c4c4c4;
	border-radius: 50%;
	opacity: 1;
	margin-inline: 3px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.ela-partners__dots .swiper-pagination-bullet-active {
	background: #d4992b;
	transform: scale(1.15);
}

/* Responsive */
@media (max-width: 991.98px) {
	.ela-partners__intro-title,
	.elementor-widget-ela-partners .ela-partners__intro-title { font-size: 30px; }
}

@media (max-width: 575.98px) {
	.ela-partners { padding: 48px 16px; }
	.ela-partners__intro-title,
	.elementor-widget-ela-partners .ela-partners__intro-title { font-size: 24px; }
	.ela-partners__intro-desc,
	.elementor-widget-ela-partners .ela-partners__intro-desc { font-size: 14px; }
	.ela-partners__arrow { width: 34px; height: 34px; }
}

/* ==========================================================================
   CONTACT (title + info columns + map + social)
   ========================================================================== */
.ela-contact {
	position: relative;
	background: #222323;
	color: #ffffff;
	padding: 80px 40px;
}

.ela-contact__container {
	max-width: 1200px;
	margin-inline: auto;
}

/* Title */
.ela-contact__title-wrap {
	margin-block-end: 48px;
}

.ela-contact__title,
.elementor-widget-ela-contact .ela-contact__title {
	margin: 0 0 14px;
	color: #ffffff;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
}

.ela-contact__title-underline {
	display: inline-block;
	width: 80px;
	height: 3px;
	background: #d4992b;
	border-radius: 2px;
}

/* Grid */
.ela-contact__grid {
	display: grid;
	grid-template-columns: 3fr 6fr 3fr;
	gap: 32px;
	align-items: start;
}

.ela-contact__col {
	min-width: 0;
}

/* Info items */
.ela-contact__info {
	display: block;
}

.ela-contact--dividers .ela-contact__info + .ela-contact__info {
	border-block-start: 1px solid rgba(255, 255, 255, 0.12);
	margin-block-start: 24px;
	padding-block-start: 24px;
}

.ela-contact__info-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.ela-contact__info-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-block-start: 2px;
	line-height: 1;
}

.ela-contact__info-icon img {
	display: block;
	width: 16px;
	height: auto;
}

.ela-contact__info-icon i,
.ela-contact__info-icon svg {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: #d4992b;
	fill: currentColor;
}

.ela-contact__info-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1 1 auto;
}

.ela-contact__info-label,
.elementor-widget-ela-contact .ela-contact__info-label {
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
}

.ela-contact__info-value,
.elementor-widget-ela-contact .ela-contact__info-value {
	color: #ffffff;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	text-decoration: none;
	word-break: break-word;
	transition: color 0.2s ease;
}

a.ela-contact__info-value:hover {
	color: #d4992b;
}

/* Map */
.ela-contact__map-tab {
	display: block;
	text-align: center;
	padding: 12px 16px;
	background: #d4992b;
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	margin-block-end: 0;
}

.ela-contact__map {
	position: relative;
	width: 100%;
	height: 260px;
	overflow: hidden;
	background: #1a1a1a;
}

.ela-contact__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Social */
.ela-contact__info--social .ela-contact__info-text {
	gap: 10px;
}

.ela-contact__social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-block: 4px;
}

.ela-contact__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: #d4992b;
	color: #ffffff;
	border-radius: 50%;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.ela-contact__social a:hover {
	background: #ca9127;
	transform: translateY(-2px);
}

.ela-contact__social a i,
.ela-contact__social a svg {
	font-size: 14px;
	width: 14px;
	height: 14px;
	color: inherit;
	fill: currentColor;
}

.ela-contact__social a img {
	display: block;
	width: 14px;
	height: auto;
}

.ela-contact__social-handle,
.elementor-widget-ela-contact .ela-contact__social-handle {
	color: #ffffff;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s ease;
}

a.ela-contact__social-handle:hover {
	color: #d4992b;
}

/* Responsive */
@media (max-width: 991.98px) {
	.ela-contact__grid {
		grid-template-columns: 1fr 1fr;
	}
	.ela-contact__col--map { grid-column: 1 / -1; grid-row: 1; }
	.ela-contact__col--left { grid-row: 2; }
	.ela-contact__col--right { grid-row: 2; }
}

@media (max-width: 575.98px) {
	.ela-contact { padding: 48px 20px; }
	.ela-contact__title,
	.elementor-widget-ela-contact .ela-contact__title { font-size: 28px; }
	.ela-contact__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.ela-contact__col--map { grid-row: auto; }
	.ela-contact__col--left,
	.ela-contact__col--right { grid-row: auto; }
	.ela-contact__map { height: 220px; }
}

/* =====================================================================
 * ELA DESTINATION — interactive route map
 * ===================================================================== */
.ela-destination {
	position: relative;
	background: #ffffff;
	overflow: hidden;
	--ela-dest-line-w: 1;
	--ela-dest-label-offset: 14px;
	--ela-plane-dur: 7s;
}

.ela-destination__container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

.ela-destination__intro {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
}

.ela-destination__title,
.elementor-widget-ela-destination .ela-destination__title {
	margin: 0 0 12px;
	font-family: 'Montserrat', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: #222323;
	text-transform: capitalize;
}

.ela-destination__description,
.elementor-widget-ela-destination .ela-destination__description {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #555555;
}

/* Map stage with aspect-ratio container */
.ela-destination__map {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 118%; /* overridden by control */
}

.ela-destination__map-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

/* SVG line layer (behind markers, above map) */
.ela-destination__lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
	z-index: 2;
}

.ela-destination__line {
	stroke: #c4c4c4;
	stroke-width: var(--ela-dest-line-w);
	fill: none;
	stroke-linecap: round;
	transition: stroke 0.25s ease, stroke-width 0.25s ease, opacity 0.25s ease;
}

.ela-destination.is-no-lines .ela-destination__lines { display: none; }

/* Line draw-in animation: dasharray length is in viewBox units, so 200 covers any 0-100 line */
.ela-destination.is-animate-lines .ela-destination__line {
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	transition: stroke-dashoffset 1.4s ease-out, stroke 0.25s ease, stroke-width 0.25s ease, opacity 0.25s ease;
	transition-delay: calc(var(--i, 0) * 0.07s);
}
.ela-destination.is-animate-lines.is-visible .ela-destination__line {
	stroke-dashoffset: 0;
}

.ela-destination__line.is-active {
	stroke-width: calc(var(--ela-dest-line-w) * 1.8);
}

/* Points layer (markers + labels) */
.ela-destination__points {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 3;
}

.ela-destination__point {
	position: absolute;
	width: 0;
	height: 0;
	pointer-events: auto;
	cursor: default;
	outline: none;
}

.ela-destination__marker {
	position: absolute;
	left: 0;
	top: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ffffff;
	border: 1.5px solid #bdbdbd;
	transform: translate(-50%, -50%);
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	box-sizing: border-box;
	z-index: 2;
}

/* Hub marker — golden filled, larger, with persistent glow ring */
.ela-destination__hub {
	z-index: 5;
}
.ela-destination__hub .ela-destination__marker {
	width: 22px;
	height: 22px;
	background: #dfa432;
	border-color: #dfa432;
	box-shadow: 0 0 0 6px rgba(223, 164, 50, 0.18);
	z-index: 4;
}

/* Hub pulse — two concentric expanding rings */
.ela-destination__hub::before,
.ela-destination__hub::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	margin-inline-start: -11px;
	margin-block-start: -11px;
	border-radius: 50%;
	background: #dfa432;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	transform-origin: center;
}
.ela-destination.is-pulsing .ela-destination__hub::before {
	animation: ela-dest-pulse 2.6s infinite ease-out;
}
.ela-destination.is-pulsing .ela-destination__hub::after {
	animation: ela-dest-pulse 2.6s infinite ease-out 1.3s;
}
@keyframes ela-dest-pulse {
	0%   { transform: scale(1);   opacity: 0.55; }
	80%  { opacity: 0.05; }
	100% { transform: scale(4);   opacity: 0; }
}

/* Labels */
.ela-destination__label {
	position: absolute;
	display: flex;
	flex-direction: column;
	white-space: nowrap;
	line-height: 1.05;
	pointer-events: none;
	font-family: 'Montserrat', sans-serif;
}

.ela-destination__label-ar {
	font-size: 11px;
	font-weight: 500;
	margin-block-end: 2px;
	color: inherit;
}

.ela-destination__label-en {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: inherit;
	text-transform: capitalize;
}

/* Hub label is a touch larger */
.ela-destination__hub .ela-destination__label-ar { font-size: 12px; font-weight: 600; }
.ela-destination__hub .ela-destination__label-en { font-size: 13px; font-weight: 700; }

/* Label positions — anchored at the marker centre with the configured offset */
.ela-destination__point--label-right .ela-destination__label {
	left: var(--ela-dest-label-offset);
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
	align-items: flex-start;
}
.ela-destination__point--label-left .ela-destination__label {
	right: var(--ela-dest-label-offset);
	top: 50%;
	transform: translateY(-50%);
	text-align: right;
	align-items: flex-end;
}
.ela-destination__point--label-top .ela-destination__label {
	bottom: var(--ela-dest-label-offset);
	left: 0;
	transform: translateX(-50%);
	text-align: center;
	align-items: center;
}
.ela-destination__point--label-bottom .ela-destination__label {
	top: var(--ela-dest-label-offset);
	left: 0;
	transform: translateX(-50%);
	text-align: center;
	align-items: center;
}

/* Destination marker entrance animation (staggered) */
.ela-destination__destination .ela-destination__marker {
	opacity: 0.001;
	transform: translate(-50%, -50%) scale(0.3);
}
.ela-destination__destination .ela-destination__label {
	opacity: 0;
	transition: opacity 0.4s ease;
}
.ela-destination.is-visible .ela-destination__destination .ela-destination__marker {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	transition:
		opacity 0.5s ease,
		transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
		background 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
	transition-delay: calc(0.4s + var(--i, 0) * 0.07s);
}
.ela-destination.is-visible .ela-destination__destination .ela-destination__label {
	opacity: 1;
	transition-delay: calc(0.55s + var(--i, 0) * 0.07s);
}

/* Hover — marker grows + glow + label tint (label tint comes from per-control selectors) */
.ela-destination__destination:hover .ela-destination__marker,
.ela-destination__destination:focus-visible .ela-destination__marker,
.ela-destination__destination.is-highlight .ela-destination__marker {
	transform: translate(-50%, -50%) scale(1.35);
}

/* Animated planes layer (between SVG lines and points) */
.ela-destination__planes {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
}
.ela-destination__plane {
	position: absolute;
	left: var(--from-x);
	top: var(--from-y);
	transform: translate(-50%, -50%) rotate(var(--angle, 0deg));
	color: #dfa432;
	font-size: 11px;
	line-height: 1;
	opacity: 0;
	will-change: left, top, opacity;
}
.ela-destination__plane i,
.ela-destination__plane svg {
	display: block;
	color: inherit;
	fill: currentColor;
}
.ela-destination.is-planes.is-visible .ela-destination__plane {
	animation: ela-dest-plane-fly var(--ela-plane-dur) infinite ease-in-out;
	animation-delay: var(--delay, 0s);
}
@keyframes ela-dest-plane-fly {
	0%   { left: var(--from-x); top: var(--from-y); opacity: 0; }
	8%   { opacity: 0.95; }
	88%  { opacity: 0.95; }
	100% { left: var(--to-x);   top: var(--to-y);   opacity: 0; }
}

/* RTL — keep label sides as defined, since geographic orientation is fixed.
   The Arabic label always sits above the English label inside .ela-destination__label. */
[dir="rtl"] .ela-destination__point--label-right .ela-destination__label { text-align: right; align-items: flex-end; }
[dir="rtl"] .ela-destination__point--label-left  .ela-destination__label { text-align: left;  align-items: flex-start; }

/* Reduced-motion: disable pulses, plane travel, and line draw-in */
@media (prefers-reduced-motion: reduce) {
	.ela-destination.is-pulsing .ela-destination__hub::before,
	.ela-destination.is-pulsing .ela-destination__hub::after,
	.ela-destination.is-planes.is-visible .ela-destination__plane {
		animation: none;
	}
	.ela-destination.is-animate-lines .ela-destination__line {
		stroke-dashoffset: 0;
		transition: none;
	}
	.ela-destination__destination .ela-destination__marker,
	.ela-destination__destination .ela-destination__label {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
		transition: none;
	}
}

/* ----- Tablet ----- */
@media (max-width: 991.98px) {
	.ela-destination__title,
	.elementor-widget-ela-destination .ela-destination__title { font-size: 30px; }
	.ela-destination__description,
	.elementor-widget-ela-destination .ela-destination__description { font-size: 15px; }
	.ela-destination__label-ar,
	.ela-destination__label-en { font-size: 10px; }
	.ela-destination__hub .ela-destination__label-en { font-size: 12px; }
}

/* ----- Mobile ----- */
@media (max-width: 575.98px) {
	.ela-destination__title,
	.elementor-widget-ela-destination .ela-destination__title { font-size: 24px; }
	.ela-destination__description,
	.elementor-widget-ela-destination .ela-destination__description { font-size: 14px; line-height: 1.55; }
	.ela-destination__intro { margin-bottom: 24px; }

	/* Shrink markers + labels so dense areas (Arabian Peninsula) stay readable */
	.ela-destination__destination .ela-destination__marker { width: 8px !important; height: 8px !important; }
	.ela-destination__hub .ela-destination__marker { width: 16px !important; height: 16px !important; }
	.ela-destination__hub::before,
	.ela-destination__hub::after { width: 16px !important; height: 16px !important; margin-inline-start: -8px !important; margin-block-start: -8px !important; }
	.ela-destination__label-ar,
	.ela-destination__label-en { font-size: 8px; }
	.ela-destination__hub .ela-destination__label-ar { font-size: 9px; }
	.ela-destination__hub .ela-destination__label-en { font-size: 10px; }
	.ela-destination { --ela-dest-label-offset: 8px; }
	.ela-destination__plane { font-size: 8px; }
}

/* =====================================================================
 * ELA AGENT — application form section (background + CF7 styling)
 * ===================================================================== */
.ela-agent {
	position: relative;
	overflow: hidden;
	isolation: isolate; /* keep ::before/::after stacking contained */
}

/* Background image layer + overlay are siblings so the blur on the bg
 * does not affect text/form. */
.ela-agent__bg {
	position: absolute;
	inset: -20px; /* over-extend so blur edges don't show */
	background-size: cover;
	background-position: center center;
	z-index: 0;
	pointer-events: none;
}
.ela-agent__overlay {
	position: absolute;
	inset: 0;
	background: rgba(67, 36, 14, 0.55);
	z-index: 1;
	pointer-events: none;
}
.ela-agent__container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

.ela-agent__title,
.elementor-widget-ela-agent .ela-agent__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0 0 32px;
	text-transform: capitalize;
}

/* The form box */
.ela-agent__form {
	background: #f5f5f5;
	padding: 50px;
	border-radius: 6px;
}

.ela-agent__notice {
	margin: 0;
	padding: 24px;
	text-align: center;
	color: #7a7a7a;
	background: #ffffff;
	border: 1px dashed #d9d9d9;
	border-radius: 6px;
}

/* Custom row helpers (used inside the CF7 template). Falls back gracefully
 * if user uses the plain CF7 layout. */
.ela-agent .ela-agent__row {
	display: grid;
	gap: 20px;
	margin-bottom: 20px;
}
.ela-agent .ela-agent__row--2col { grid-template-columns: 1fr 1fr; }
.ela-agent .ela-agent__row--3col { grid-template-columns: 1fr 1fr 1fr; }
.ela-agent .ela-agent__col { min-width: 0; }
.ela-agent .ela-agent__col--file {
	background: #ffffff;
	border: 1px solid rgba(204, 204, 204, 0.5);
	border-radius: 4px;
	padding: 14px 18px;
}

.ela-agent .ela-agent__file-label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #a0a09f;
	margin-bottom: 8px;
}

/* CF7 wraps shortcodes in <span class="wpcf7-form-control-wrap">.
 * Make wraps full-width and remove default margins. */
.ela-agent .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* Input styling baseline (Elementor Style tab can override) */
.ela-agent input[type="text"],
.ela-agent input[type="email"],
.ela-agent input[type="tel"],
.ela-agent input[type="number"],
.ela-agent input[type="url"],
.ela-agent textarea,
.ela-agent select {
	display: block;
	width: 100%;
	height: 45px;
	padding: 0 20px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	color: #222323;
	background: #ffffff;
	border: 1px solid rgba(204, 204, 204, 0.39);
	border-radius: 4px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	box-sizing: border-box;
}
.ela-agent textarea {
	height: auto;
	min-height: 120px;
	padding: 14px 20px;
	resize: vertical;
}
.ela-agent input:focus,
.ela-agent textarea:focus,
.ela-agent select:focus {
	border-color: #dfa432;
	outline: none;
	box-shadow: 0 0 0 3px rgba(223, 164, 50, 0.15);
}

.ela-agent input[type="file"] {
	display: block;
	width: 100%;
	padding: 6px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #222323;
	background: transparent;
	border: 0;
	cursor: pointer;
}

/* Submit button */
.ela-agent button[type="submit"],
.ela-agent input[type="submit"],
.ela-agent .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 120px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	background: #dfa432;
	border: 1px solid #dfa432;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.ela-agent button[type="submit"]:hover,
.ela-agent input[type="submit"]:hover,
.ela-agent .wpcf7-submit:hover {
	background: #ca9127;
	border-color: #ca9127;
}
.ela-agent button[type="submit"]:active,
.ela-agent input[type="submit"]:active,
.ela-agent .wpcf7-submit:active {
	transform: translateY(1px);
}

/* Submit wrap (used in CF7 template; also CF7's own last <p>) */
.ela-agent .ela-agent__submit-wrap {
	display: flex;
	justify-content: center;
	margin-top: 12px;
}

/* Description block inside the form */
.ela-agent .ela-agent__description,
.ela-agent__description {
	margin: 24px 0;
	padding: 0 4px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #7a7a7a;
	text-align: center;
}
.ela-agent .ela-agent__description p { margin: 0 0 12px; }
.ela-agent .ela-agent__description p:last-child { margin: 0; }

/* CF7 status messages */
.ela-agent .wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 16px;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
}
.ela-agent .wpcf7 form.sent .wpcf7-response-output {
	border-color: #2e7d32;
	color: #2e7d32;
}
.ela-agent .wpcf7 form.invalid .wpcf7-response-output,
.ela-agent .wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #c62828;
	color: #c62828;
}
.ela-agent .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #c62828;
}

/* CF7 form has a leading <form> with default margins. Reset. */
.ela-agent .wpcf7-form {
	margin: 0;
}

/* RTL */
[dir="rtl"] .ela-agent input[type="text"],
[dir="rtl"] .ela-agent input[type="email"],
[dir="rtl"] .ela-agent input[type="tel"],
[dir="rtl"] .ela-agent input[type="number"],
[dir="rtl"] .ela-agent input[type="url"],
[dir="rtl"] .ela-agent textarea {
	text-align: right;
}

/* ----- Tablet ----- */
@media (max-width: 991.98px) {
	.ela-agent__title,
	.elementor-widget-ela-agent .ela-agent__title { font-size: 42px; }
	.ela-agent__form { padding: 36px; }
	.ela-agent .ela-agent__row--3col { grid-template-columns: 1fr 1fr; }
	.ela-agent button[type="submit"],
	.ela-agent input[type="submit"],
	.ela-agent .wpcf7-submit { padding: 12px 80px; }
}

/* ----- Mobile ----- */
@media (max-width: 575.98px) {
	.ela-agent__title,
	.elementor-widget-ela-agent .ela-agent__title { font-size: 32px; margin-bottom: 24px; }
	.ela-agent__form { padding: 24px 20px; }
	.ela-agent .ela-agent__row { gap: 16px; margin-bottom: 16px; }
	.ela-agent .ela-agent__row--2col,
	.ela-agent .ela-agent__row--3col { grid-template-columns: 1fr; }
	.ela-agent button[type="submit"],
	.ela-agent input[type="submit"],
	.ela-agent .wpcf7-submit { width: 100%; padding: 14px 20px; }
	.ela-agent .ela-agent__description { font-size: 13px; }
}

/* =====================================================================
 * ELA IMAGE & TEXT — two-column image + text (Captains, etc.)
 * ===================================================================== */
.ela-image-text {
	position: relative;
	background: #ffffff;
}

.ela-image-text__container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

.ela-image-text__row {
	display: grid;
	grid-template-columns: var(--ela-it-image-col, 33%) 1fr;
	gap: 60px;
	align-items: center;
}

/* Image-on-right: visually swap columns; HTML order stays the same so screen readers
 * still meet image-then-text. */
.ela-image-text--image-right .ela-image-text__row {
	grid-template-columns: 1fr var(--ela-it-image-col, 33%);
}
.ela-image-text--image-right .ela-image-text__col--image { order: 2; }
.ela-image-text--image-right .ela-image-text__col--text  { order: 1; }

.ela-image-text__col { min-width: 0; }

/* Image */
.ela-image-text__image {
	position: relative;
	display: block;
}
.ela-image-text__image > img:first-child {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
}

/* Aspect-ratio variants — set on the image wrapper so the shape stays anchored */
.ela-image-text--ratio-1\/1 .ela-image-text__image > img:first-child,
.ela-image-text--ratio-4\/5 .ela-image-text__image > img:first-child,
.ela-image-text--ratio-3\/4 .ela-image-text__image > img:first-child,
.ela-image-text--ratio-4\/3 .ela-image-text__image > img:first-child,
.ela-image-text--ratio-16\/9 .ela-image-text__image > img:first-child {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.ela-image-text--ratio-1\/1 .ela-image-text__image > img:first-child   { aspect-ratio: 1 / 1; }
.ela-image-text--ratio-4\/5 .ela-image-text__image > img:first-child   { aspect-ratio: 4 / 5; }
.ela-image-text--ratio-3\/4 .ela-image-text__image > img:first-child   { aspect-ratio: 3 / 4; }
.ela-image-text--ratio-4\/3 .ela-image-text__image > img:first-child   { aspect-ratio: 4 / 3; }
.ela-image-text--ratio-16\/9 .ela-image-text__image > img:first-child  { aspect-ratio: 16 / 9; }

/* Decorative shape overlay */
.ela-image-text__shape {
	position: absolute;
	width: 38%;
	height: auto;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
	z-index: 1;
	--ela-it-shape-x: -10%;
	--ela-it-shape-y: -8%;
}
.ela-image-text__shape--top-start    { top: var(--ela-it-shape-y);    inset-inline-start: var(--ela-it-shape-x); }
.ela-image-text__shape--top-end      { top: var(--ela-it-shape-y);    inset-inline-end:   var(--ela-it-shape-x); }
.ela-image-text__shape--bottom-start { bottom: var(--ela-it-shape-y); inset-inline-start: var(--ela-it-shape-x); }
.ela-image-text__shape--bottom-end   { bottom: var(--ela-it-shape-y); inset-inline-end:   var(--ela-it-shape-x); }

/* Text */
.ela-image-text__title,
.elementor-widget-ela-image-text .ela-image-text__title {
	margin: 0 0 18px;
	font-family: 'Montserrat', sans-serif;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	color: #dfa432;
}

.ela-image-text__description,
.elementor-widget-ela-image-text .ela-image-text__description {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #555555;
}
.ela-image-text__description p { margin: 0 0 12px; }
.ela-image-text__description p:last-child { margin: 0; }

/* CTA */
.ela-image-text__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 22px;
	padding: 12px 36px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	background: #dfa432;
	border: 1px solid #dfa432;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ela-image-text__btn:hover {
	background: #ca9127;
	border-color: #ca9127;
	color: #ffffff;
}

/* ----- Tablet ----- */
@media (max-width: 991.98px) {
	.ela-image-text__row {
		grid-template-columns: 1fr !important;
		gap: 36px;
	}
	.ela-image-text--image-right .ela-image-text__col--image,
	.ela-image-text--image-right .ela-image-text__col--text {
		order: initial;
	}
	/* Mobile order toggle (effectively tablet+mobile here) */
	.ela-image-text--mobile-text-first .ela-image-text__col--image { order: 2; }
	.ela-image-text--mobile-text-first .ela-image-text__col--text  { order: 1; }

	.ela-image-text__title,
	.elementor-widget-ela-image-text .ela-image-text__title { font-size: 36px; }
	/* Default mobile/tablet image cap; overridden by the per-device Image Width control. */
	.ela-image-text__col--image { max-width: 480px; margin-inline: auto; width: 100%; }
}

/* ----- Mobile ----- */
@media (max-width: 575.98px) {
	.ela-image-text__row { gap: 28px; }
	.ela-image-text__title,
	.elementor-widget-ela-image-text .ela-image-text__title { font-size: 28px; }
	.ela-image-text__description,
	.elementor-widget-ela-image-text .ela-image-text__description { font-size: 14px; }
	.ela-image-text__btn { padding: 12px 28px; font-size: 14px; }
}

/* =====================================================================
 * ELA JOB OPENINGS — careers title + position pills grid
 * ===================================================================== */
.ela-job-openings {
	position: relative;
	background: #ffffff;
}

.ela-job-openings__container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

.ela-job-openings__main-title,
.elementor-widget-ela-job-openings .ela-job-openings__main-title {
	margin: 0 0 50px;
	font-family: 'Montserrat', sans-serif;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.2;
	color: #dfa432;
	text-align: center;
}

.ela-job-openings__subtitle,
.elementor-widget-ela-job-openings .ela-job-openings__subtitle {
	margin: 0 0 22px;
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #222323;
}

.ela-job-openings__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.ela-job-openings__pill {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 18px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #222323;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	box-sizing: border-box;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}
.ela-job-openings__pill > span {
	display: block;
	line-height: 1.3;
}

.ela-job-openings__pill:hover,
.ela-job-openings__pill:focus-visible {
	background: #dfa432;
	color: #ffffff;
	border-color: #dfa432;
	box-shadow: 0 6px 14px rgba(223, 164, 50, 0.18);
	transform: translateY(-2px);
	outline: none;
}

.ela-job-openings__pill--static {
	cursor: default;
	pointer-events: none;
}

@media (max-width: 991.98px) {
	.ela-job-openings__main-title,
	.elementor-widget-ela-job-openings .ela-job-openings__main-title { font-size: 34px; margin-bottom: 40px; }
	.ela-job-openings__subtitle,
	.elementor-widget-ela-job-openings .ela-job-openings__subtitle { font-size: 20px; }
	.ela-job-openings__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 575.98px) {
	.ela-job-openings__main-title,
	.elementor-widget-ela-job-openings .ela-job-openings__main-title { font-size: 26px; margin-bottom: 30px; }
	.ela-job-openings__subtitle,
	.elementor-widget-ela-job-openings .ela-job-openings__subtitle { font-size: 18px; margin-bottom: 18px; }
	.ela-job-openings__grid { grid-template-columns: 1fr; gap: 12px; }
	.ela-job-openings__pill { font-size: 14px; min-height: 44px; padding: 12px 16px; }
}

/* =====================================================================
 * ELA APPLY NOW — careers application form section
 * ===================================================================== */
.ela-apply-now {
	position: relative;
	background: #ffffff;
	scroll-margin-top: 80px; /* offset for sticky header when scrolled into via anchor */
}

.ela-apply-now__container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

.ela-apply-now__title,
.elementor-widget-ela-apply-now .ela-apply-now__title {
	margin: 0 0 32px;
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #222323;
}

.ela-apply-now__notice {
	margin: 0;
	padding: 24px;
	text-align: center;
	color: #7a7a7a;
	background: #fafafa;
	border: 1px dashed #d9d9d9;
	border-radius: 6px;
}

/* Custom row helpers (used inside the CF7 template) */
.ela-apply-now .ela-apply__row {
	display: grid;
	gap: 24px 32px;
	margin-bottom: 22px;
}
.ela-apply-now .ela-apply__row--2col { grid-template-columns: 1fr 1fr; }
.ela-apply-now .ela-apply__row--3col { grid-template-columns: 1fr 1fr 1fr; }
.ela-apply-now .ela-apply__col { min-width: 0; }
.ela-apply-now .ela-apply__col--file {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	padding: 16px 18px;
}
.ela-apply-now .ela-apply__col--file label {
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
}
.ela-apply-now .ela-apply__note {
	margin: 8px 0 0;
	font-size: 12px;
	color: #888888;
}

/* Field labels */
.ela-apply-now label {
	display: block;
	margin-bottom: 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #222323;
}
.ela-apply-now .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* Inputs */
.ela-apply-now input[type="text"],
.ela-apply-now input[type="email"],
.ela-apply-now input[type="tel"],
.ela-apply-now input[type="url"],
.ela-apply-now input[type="number"],
.ela-apply-now textarea,
.ela-apply-now select {
	display: block;
	width: 100%;
	height: 42px;
	padding: 0 14px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #222323;
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.ela-apply-now textarea {
	height: auto;
	min-height: 120px;
	padding: 12px 14px;
	resize: vertical;
}
.ela-apply-now select {
	appearance: auto;
}
.ela-apply-now input:focus,
.ela-apply-now textarea:focus,
.ela-apply-now select:focus {
	border-color: #dfa432;
	outline: none;
	background: #ffffff;
}
.ela-apply-now input[type="file"] {
	width: 100%;
	padding: 4px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #222323;
	background: transparent;
	border: 0;
	cursor: pointer;
}

/* Mandatory + disclaimer notes inside the form */
.ela-apply-now .ela-apply__mandatory,
.ela-apply-now .ela-apply__disclaimer {
	margin: 28px 0;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
}
.ela-apply-now .ela-apply__mandatory p {
	margin: 0;
	font-size: 14.5px;
	font-weight: 600;
	color: #c0392b;
}
.ela-apply-now .ela-apply__disclaimer p {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: #888888;
}

/* Submit */
.ela-apply-now .ela-apply__submit-wrap {
	margin-top: 12px;
}
.ela-apply-now button[type="submit"],
.ela-apply-now input[type="submit"],
.ela-apply-now .wpcf7-submit {
	display: block;
	width: 100%;
	height: 45px;
	padding: 0 24px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15.5px;
	font-weight: 700;
	color: #ffffff;
	background: #444545;
	border: 1px solid #444545;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ela-apply-now button[type="submit"]:hover,
.ela-apply-now input[type="submit"]:hover,
.ela-apply-now .wpcf7-submit:hover {
	background: #dfa432;
	border-color: #dfa432;
}

/* CF7 message strips */
.ela-apply-now .wpcf7-form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 16px;
	border-radius: 4px;
	font-size: 13px;
}
.ela-apply-now .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #c0392b;
}
.ela-apply-now .wpcf7-form { margin: 0; }

/* Highlighted job pill (after click, before scroll) */
.ela-job-openings__pill.is-pinged {
	background: #dfa432;
	color: #ffffff;
	border-color: #dfa432;
}

/* RTL: form is locale-driven so text-align switches naturally */
[dir="rtl"] .ela-apply-now input[type="text"],
[dir="rtl"] .ela-apply-now input[type="email"],
[dir="rtl"] .ela-apply-now input[type="tel"],
[dir="rtl"] .ela-apply-now input[type="url"],
[dir="rtl"] .ela-apply-now textarea {
	text-align: right;
}

/* Tablet */
@media (max-width: 991.98px) {
	.ela-apply-now .ela-apply__row { gap: 20px 24px; margin-bottom: 18px; }
	.ela-apply-now .ela-apply__row--3col { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 575.98px) {
	.ela-apply-now__title,
	.elementor-widget-ela-apply-now .ela-apply-now__title { font-size: 18px; margin-bottom: 24px; }
	.ela-apply-now .ela-apply__row { gap: 16px; margin-bottom: 16px; }
	.ela-apply-now .ela-apply__row--2col,
	.ela-apply-now .ela-apply__row--3col { grid-template-columns: 1fr; }
	.ela-apply-now .ela-apply__mandatory p { font-size: 13.5px; }
	.ela-apply-now .ela-apply__disclaimer p { font-size: 12px; }
}

/* =====================================================================
 * ELA CONTACT FORM — "Send a message" with side panel
 * ===================================================================== */
.ela-contact-form {
	position: relative;
	background: #ffffff;
}

.ela-contact-form__container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

.ela-contact-form__bar {
	background: #bf8822;
	padding: 18px 24px;
	margin-bottom: 36px;
	text-align: center;
	border-radius: 4px;
}
.ela-contact-form__bar-title,
.elementor-widget-ela-contact-form .ela-contact-form__bar-title {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
}

.ela-contact-form__body {
	display: grid;
	grid-template-columns: 66% 1fr;
	gap: 56px;
	align-items: start;
}
.ela-contact-form__col { min-width: 0; }

.ela-contact-form__notice {
	margin: 0;
	padding: 24px;
	text-align: center;
	color: #7a7a7a;
	background: #fafafa;
	border: 1px dashed #d9d9d9;
	border-radius: 6px;
}

/* Form fields */
.ela-contact-form input[type="text"],
.ela-contact-form input[type="email"],
.ela-contact-form input[type="tel"],
.ela-contact-form input[type="url"],
.ela-contact-form textarea {
	display: block;
	width: 100%;
	padding: 11px 14px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #222323;
	background: #fafafa;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.ela-contact-form textarea {
	min-height: 130px;
	resize: vertical;
}
.ela-contact-form input:focus,
.ela-contact-form textarea:focus {
	border-color: #dfa432;
	background: #ffffff;
	outline: none;
}

/* CF7 helper rows for first/last name 2-col split */
.ela-contact-form .ela-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
.ela-contact-form .ela-contact-form__col-half { min-width: 0; }

/* Submit button */
.ela-contact-form button[type="submit"],
.ela-contact-form input[type="submit"],
.ela-contact-form .wpcf7-submit {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 12px 16px;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	background: #d09923;
	border: 1px solid #d09923;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease;
}
.ela-contact-form button[type="submit"]:hover,
.ela-contact-form input[type="submit"]:hover,
.ela-contact-form .wpcf7-submit:hover {
	background: #bf8822;
	border-color: #bf8822;
}

.ela-contact-form .wpcf7-form { margin: 0; }
.ela-contact-form .wpcf7-form .wpcf7-response-output {
	margin: 14px 0 0;
	padding: 10px 14px;
	font-size: 13px;
	border-radius: 4px;
}
.ela-contact-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #c0392b;
}

/* Side panel */
.ela-contact-form__col--side {
	text-align: center;
}
.ela-contact-form__side-image {
	display: block;
	max-width: 130px;
	margin: 0 auto 18px;
	height: auto;
}
.ela-contact-form__side-text,
.elementor-widget-ela-contact-form .ela-contact-form__side-text {
	margin: 0 auto 22px;
	max-width: 280px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #555555;
}
.ela-contact-form__side-heading,
.elementor-widget-ela-contact-form .ela-contact-form__side-heading {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #dfa432;
	letter-spacing: 0.04em;
}

/* Tablet */
@media (max-width: 991.98px) {
	.ela-contact-form__body { grid-template-columns: 1fr !important; gap: 40px; }
	.ela-contact-form__col--side { padding-top: 8px; }
}

/* Mobile */
@media (max-width: 575.98px) {
	.ela-contact-form__bar { padding: 14px 18px; margin-bottom: 24px; }
	.ela-contact-form__bar-title,
	.elementor-widget-ela-contact-form .ela-contact-form__bar-title { font-size: 16px; }
	.ela-contact-form .ela-contact-form__row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
	.ela-contact-form button[type="submit"],
	.ela-contact-form input[type="submit"],
	.ela-contact-form .wpcf7-submit { font-size: 16px; }
}

/* =====================================================================
 * ELA CONTACT DETAILS — circles + tabbed location panels
 * ===================================================================== */
.ela-contact-details {
	position: relative;
	background: #ffffff;
}

.ela-contact-details__container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

.ela-contact-details__title,
.elementor-widget-ela-contact-details .ela-contact-details__title {
	margin: 0 0 48px;
	font-family: 'Montserrat', sans-serif;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.2;
	color: #222323;
	text-align: center;
}

/* Circles row */
.ela-contact-details__circles {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	margin-bottom: 36px;
}

.ela-contact-details__circle {
	position: relative;
	width: 220px;
	height: 220px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background-color: #cccccc;
	background-size: cover;
	background-position: center center;
	border-radius: 50%;
	border: 0;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	outline: none;
	-webkit-appearance: none;
}
.ela-contact-details__circle::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 0.3s ease;
	border-radius: inherit;
	z-index: 1;
}
.ela-contact-details__circle:hover {
	transform: translateY(-4px);
}
.ela-contact-details__circle.is-active {
	box-shadow: 0 0 0 4px #dfa432;
}
.ela-contact-details__circle.is-active::before {
	background: rgba(0, 0, 0, 0.35);
}
.ela-contact-details__circle-label {
	position: relative;
	z-index: 2;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(4px) scale(0.96);
	transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	pointer-events: none;
}
.ela-contact-details__circle:hover .ela-contact-details__circle-label,
.ela-contact-details__circle.is-active .ela-contact-details__circle-label {
	opacity: 1;
	font-size: 22px;
	transform: translateY(0) scale(1);
}

/* Panels container with arrow that follows the active circle */
.ela-contact-details__panels {
	position: relative;
	margin-top: 8px;
	--ela-cd-arrow-x: 50%;
}

.ela-contact-details__panel {
	position: relative;
	background: #f5f5f5;
	border-radius: 16px;
	padding: 36px;
	animation: ela-cd-fade 0.35s ease;
}
.ela-contact-details__panel[hidden] { display: none; }

.ela-contact-details__panel.is-active::before {
	content: '';
	position: absolute;
	top: -10px;
	left: var(--ela-cd-arrow-x, 50%);
	width: 22px;
	height: 22px;
	background: inherit;
	transform: translateX(-50%) rotate(45deg);
	border-radius: 4px 0 0 0;
	z-index: 0;
}

@keyframes ela-cd-fade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.ela-contact-details__panel-title {
	margin: 0 0 20px;
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #222323;
}

.ela-contact-details__panel-row {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 32px;
	align-items: center;
}

.ela-contact-details__info {
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #444545;
}
.ela-contact-details__info li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 0;
}
.ela-contact-details__info a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.ela-contact-details__info a:hover {
	color: #dfa432;
}

.ela-contact-details__icon {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #dfa432;
	line-height: 1;
}
.ela-contact-details__icon i,
.ela-contact-details__icon svg {
	display: inline-block;
	width: 18px;
	height: 18px;
	font-size: 18px;
	line-height: 1;
	color: inherit;
	fill: currentColor;
	text-align: center;
}
.ela-contact-details__icon i::before {
	display: inline-block;
	width: 18px;
	line-height: 18px;
	text-align: center;
	font-size: 16px; /* sized down so chunky glyphs (fa-phone, fa-clock) match thin ones */
}
.ela-contact-details__icon svg path { fill: currentColor; }

.ela-contact-details__map {
	position: relative;
	width: 100%;
	height: 240px;
	border-radius: 8px;
	overflow: hidden;
	background: #e9e9e9;
}
.ela-contact-details__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
	.ela-contact-details__title,
	.elementor-widget-ela-contact-details .ela-contact-details__title { font-size: 34px; margin-bottom: 36px; }
	.ela-contact-details__circle { width: 180px; height: 180px; }
	.ela-contact-details__panel-row { grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
}

/* Mobile */
@media (max-width: 575.98px) {
	.ela-contact-details__title,
	.elementor-widget-ela-contact-details .ela-contact-details__title { font-size: 26px; margin-bottom: 28px; }
	.ela-contact-details__circles { gap: 16px; margin-bottom: 24px; }
	.ela-contact-details__circle { width: 140px; height: 140px; padding: 18px 10px; }
	.ela-contact-details__circle-label { font-size: 14px; }
	.ela-contact-details__panel { padding: 22px; border-radius: 12px; }
	.ela-contact-details__panel-title { font-size: 19px; margin-bottom: 14px; }
	.ela-contact-details__info { font-size: 13.5px; }
}

/* =====================================================================
 * ELA SCROLL TO TOP — fixed circular plane button
 * ===================================================================== */
.ela-scroll-top {
	position: fixed;
	inset-block-end: var(--ela-st-offset-y, 24px);
	inset-inline-end: var(--ela-st-offset-x, 24px);
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #222323;
	color: #dfa432;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	box-sizing: border-box;
	-webkit-appearance: none;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		visibility 0.3s,
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}
.ela-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.ela-scroll-top i,
.ela-scroll-top svg {
	display: inline-block;
	color: inherit;
	fill: currentColor;
	font-size: 16px;
	line-height: 1;
}
.ela-scroll-top svg path { fill: currentColor; }

.ela-scroll-top:hover,
.ela-scroll-top:focus-visible {
	background: #ffffff;
	color: #dfa432;
	outline: none;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Position variants — bottom-start swaps the inline edge */
.ela-scroll-top--pos-bottom-start .ela-scroll-top,
.elementor-widget-ela-scroll-top.ela-scroll-top--pos-bottom-start .ela-scroll-top {
	inset-inline-end: auto;
	inset-inline-start: var(--ela-st-offset-x, 24px);
}

/* When placed inside an Elementor wrapper, the wrapper itself shouldn't
 * take any layout space — the button is fixed-positioned. */
.elementor-widget-ela-scroll-top { line-height: 0; }
.elementor-widget-ela-scroll-top > .elementor-widget-container { display: contents; }

@media (prefers-reduced-motion: reduce) {
	.ela-scroll-top { transition: opacity 0.2s, visibility 0.2s; transform: none; }
}
