/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #41B649; border-radius: 2px; }

/* ─── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(65,182,73,0.5); }
  50%      { box-shadow: 0 0 0 14px rgba(65,182,73,0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-animate-1 { animation: fadeUp 0.8s 0.15s both; }
.hero-animate-2 { animation: fadeUp 0.8s 0.35s both; }
.hero-animate-3 { animation: fadeUp 0.8s 0.55s both; }
.hero-animate-4 { animation: fadeUp 0.8s 0.75s both; }
.hero-animate-5 { animation: fadeUp 0.8s 0.95s both; }

.btn-pulse { animation: pulseGlow 3s 2s infinite; }

/* ─── Scroll Reveal ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ─── Clip Shapes ───────────────────────────────────────────────────────────── */
.clip-btn    { clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); }
.clip-btn-sm { clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }
.clip-card   { clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%); }

/* ─── Carbon / Stripe Textures ──────────────────────────────────────────────── */
.carbon {
  background-image:
    repeating-linear-gradient(45deg,  rgba(255,255,255,0.013) 0, rgba(255,255,255,0.013) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.013) 0, rgba(255,255,255,0.013) 1px, transparent 1px, transparent 16px);
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.uae-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.uae-btn--green {
  background: #2a7a30;
  padding: 16px 32px;
  font-size: 1.15rem;
  transition: background 0.25s;
}
.uae-btn--green:hover { background: #225f26; }
.uae-btn--sm { font-size: 1.05rem; }
.uae-btn--outline {
  background: rgba(0,0,0,0.4);
  padding: 14px 32px;
  font-size: 1.15rem;
  transition: background 0.25s;
}
.uae-btn--outline:hover { background: rgba(255,255,255,0.15); }
.uae-btn-outline-wrap {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 2px;
}

/* ─── Section Shared Styles ─────────────────────────────────────────────────── */
.uae-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.uae-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.uae-eyebrow-wrap--left {
  justify-content: flex-start;
}
.uae-eyebrow-line {
  width: 32px;
  height: 2px;
  background: #41B649;
  flex-shrink: 0;
}
.uae-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #41B649;
  font-size: 0.72rem;
  letter-spacing: 4px;
}
.uae-section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 24px;
}
.uae-heading-grey { color: #888; }
.uae-body-text {
  color: #aaa;
  font-weight: 300;
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ─── Nav ───────────────────────────────────────────────────────────────────── */
.uae-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 68px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.uae-nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uae-nav.scrolled {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(65,182,73,0.12);
}
.uae-nav__logo { display: flex; align-items: center; }
.uae-nav__logo-img { height: 48px; width: auto; }
.uae-nav__logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.uae-nav__desktop {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-lnk {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: #888;
  transition: color 0.25s;
  text-decoration: none;
}
.nav-lnk:hover,
.nav-lnk.current-menu-item,
.nav-lnk.current-page-ancestor,
.nav-lnk.current_page_item { color: #fff; }
.uae-nav__btn-wrap {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 2px;
}
.uae-nav__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.25s;
}
.uae-nav__btn:hover { background: rgba(255,255,255,0.15); }
.uae-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.uae-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.uae-mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  z-index: 40;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(0,0,0,0.97);
}
.uae-mobile-menu.open { display: flex; }
.mobile-nav-lnk {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
.uae-mobile-menu__btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: #fff;
  background: #2a7a30;
  padding: 16px 40px;
  margin-top: 16px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .uae-nav__desktop { display: flex; }
  .uae-nav__hamburger { display: none; }
}
@media (max-width: 767px) {
  .uae-nav__inner { padding: 0 24px; }
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.uae-hero {
  position: relative;
  overflow: hidden;
  background-color: #111;
  background-size: cover;
  background-position: center;
}
.uae-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 120px 5% 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.uae-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.uae-hero__carbon {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    repeating-linear-gradient(45deg,  rgba(255,255,255,0.013) 0, rgba(255,255,255,0.013) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.013) 0, rgba(255,255,255,0.013) 1px, transparent 1px, transparent 16px);
}
.uae-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 65% 50%, rgba(65,182,73,0.08) 0%, transparent 70%);
}
.uae-hero__bottom-grad {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.uae-hero__content {
  position: relative;
  z-index: 10;
  max-width: 680px;
}
.uae-hero__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3.6rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 28px;
  color: #fff;
}
.uae-hero__heading--green { color: #41B649; }
.uae-hero__heading--italic {
  color: #aaa;
  font-style: italic;
  font-weight: 700;
}
.uae-hero__desc {
  color: #aaa;
  font-weight: 300;
  line-height: 1.65;
  font-size: 1.2rem;
  max-width: 520px;
  margin-bottom: 44px;
}
.uae-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Services ──────────────────────────────────────────────────────────────── */
.uae-services {
  position: relative;
  padding: 96px 5%;
  background: #111;
}
.uae-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}
@media (min-width: 768px) {
  .uae-services__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .uae-services__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.svc-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: inherit;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: #41B649;
  transition: width 0.4s ease;
}
.svc-card:hover::after { width: 100%; }

.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.svc-card:hover .svc-bg { transform: scale(1.08); }

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.85) 100%);
  transition: opacity 0.4s ease;
}
.svc-card:hover .svc-overlay { opacity: 0.8; }

.svc-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3.2rem;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  z-index: 10;
  user-select: none;
}
.svc-card__icon {
  position: relative;
  z-index: 10;
  color: #41B649;
  margin-bottom: 20px;
}
.svc-card__title {
  position: relative;
  z-index: 10;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fff;
}
.svc-card__desc {
  position: relative;
  z-index: 10;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  font-weight: 300;
}
.uae-services__empty {
  color: #555;
  text-align: center;
  padding: 48px 0;
  font-style: italic;
}
.uae-services .uae-section-header,
.uae-services__grid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── About Business ────────────────────────────────────────────────────────── */
.uae-about-biz {
  position: relative;
  padding: 96px 5%;
}
.uae-about-biz__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.35) contrast(1.1);
}
.uae-about-biz__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.uae-about-biz__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .uae-about-biz__inner { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.uae-about-biz__text {}
.uae-about-biz__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.uae-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.uae-stat-card:hover {
  background: rgba(65,182,73,0.08);
  border-color: rgba(65,182,73,0.35);
}
.uae-stat-card__value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #41B649;
  line-height: 1;
  margin-bottom: 4px;
}
.uae-stat-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: #666;
  transition: color 0.3s;
}
.uae-stat-card:hover .uae-stat-card__label { color: #999; }

/* ─── Brands ────────────────────────────────────────────────────────────────── */
.uae-brands {
  background: #0e0e0e;
  padding: 64px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.uae-brands__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}
.uae-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
}
.uae-brands__logo {
  max-height: 80px;
  width: auto;
}
.uae-brands__placeholder {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* ─── Map Section ───────────────────────────────────────────────────────────── */
.uae-map-section {
  position: relative;
  min-height: 680px;
}
.uae-map__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: grayscale(100%) brightness(0.6) contrast(1.05);
}
.uae-map__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.uae-map__content {
  position: relative;
  z-index: 2;
  padding: 112px 5%;
}
.uae-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .uae-map__grid { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.uae-map__header { margin-bottom: 40px; }
.uae-map__why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.uae-map__why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  border-left: 3px solid #41B649;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.uae-map__why-item:hover { background: #1a1a1a; }
.uae-map__why-icon { flex-shrink: 0; margin-top: 2px; }
.uae-map__why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: #fff;
}
.uae-map__why-desc {
  font-size: 1rem;
  color: #999;
  font-weight: 300;
  line-height: 1.55;
}
.uae-map__address-wrap {
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .uae-map__address-wrap { display: flex; }
}
.uae-map__address-card {
  text-align: center;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  padding: 28px 36px;
  border-left: 3px solid #41B649;
}
.uae-map__address-line1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: #fff;
}
.uae-map__address-line2 {
  font-size: 0.72rem;
  color: #41B649;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ─── Contact ───────────────────────────────────────────────────────────────── */
.uae-contact {
  position: relative;
  padding: 96px 5%;
  background: #000;
}
.uae-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .uae-contact__grid { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.uae-contact__header { margin-bottom: 40px; }
.uae-contact__intro {
  color: #666;
  font-weight: 300;
  line-height: 1.65;
  font-size: 1rem;
  max-width: 380px;
}
.uae-contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.uae-contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.uae-contact__icon { flex-shrink: 0; }
.uae-contact__label {
  font-size: 0.67rem;
  letter-spacing: 2px;
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.uae-contact__value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}
a.uae-contact__value:hover { color: #41B649; }
.uae-contact__form-wrap {}

/* CF7 form styling */
.uae-contact__form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* 2-column row */
.uae-contact__form-wrap .cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .uae-contact__form-wrap .cf7-row { grid-template-columns: 1fr; }
}
.uae-contact__form-wrap .cf7-col,
.uae-contact__form-wrap .cf7-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* Labels — wraps the input (CF7's official pattern), so use flex column */
.uae-contact__form-wrap .cf7-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.67rem;
  letter-spacing: 2px;
  color: #555;
}
/* Inputs */
.uae-contact__form-wrap input[type="text"],
.uae-contact__form-wrap input[type="email"],
.uae-contact__form-wrap input[type="tel"],
.uae-contact__form-wrap textarea,
.uae-contact__form-wrap select {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 13px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.uae-contact__form-wrap input:focus,
.uae-contact__form-wrap textarea:focus { border-color: #41B649; }
.uae-contact__form-wrap input::placeholder,
.uae-contact__form-wrap textarea::placeholder { color: rgba(255,255,255,0.2); }
.uae-contact__form-wrap textarea { resize: vertical; min-height: 110px; }
/* CF7 wraps each field in a span — make it fill its container */
.uae-contact__form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
/* Submit button */
.uae-contact__form-wrap button.uae-cf7-submit {
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  background: #2a7a30;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.15rem;
  padding: 17px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: auto;
  gap: 10px;
  margin-top: 8px;
  line-height: 1;
}
.uae-contact__form-wrap button.uae-cf7-submit:hover { background: #225f26; }
.uae-contact__form-wrap button.uae-cf7-submit svg { flex-shrink: 0; }
/* Prevent CF7's wrapping <p> from stretching the button full-width */
.uae-contact__form-wrap .wpcf7-form > p:has(button.uae-cf7-submit) { display: flex; }
/* Validation */
.wpcf7-not-valid-tip { color: #e55; font-size: 0.8rem; margin-top: 4px; display: block; }
.wpcf7-response-output {
  border: 1px solid rgba(65,182,73,0.3);
  background: rgba(65,182,73,0.06);
  color: #41B649;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ─── Contact Page: Why Contact Us ──────────────────────────────────────────── */
.uae-contact-why {
  background: #0a0a0a;
  padding: 80px 5%;
}
.uae-contact-why__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-contact-why__header {
  text-align: center;
  margin-bottom: 56px;
}
.uae-contact-why__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1;
}
.uae-contact-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .uae-contact-why__grid { grid-template-columns: repeat(3, 1fr); }
}
.uae-contact-why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid #41B649;
}
.uae-contact-why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(65,182,73,0.1);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.uae-contact-why-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 12px;
}
.uae-contact-why-card__desc {
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ─── Contact Page: Google Map ───────────────────────────────────────────────── */
.uae-cmap__iframe-wrap {
  position: relative;
  width: 100%;
  height: 420px;
}
.uae-cmap__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;
}
.uae-cmap__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  padding: 14px 5%;
  background: #0d0d0d;
  border-top: 1px solid rgba(65,182,73,0.15);
}
.uae-cmap__bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 300;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.uae-cmap__bar-link {
  text-decoration: none;
  transition: color 0.25s;
}
.uae-cmap__bar-link:hover { color: #41B649; }
.uae-cmap__bar-sep {
  color: rgba(255,255,255,0.15);
  font-size: 1rem;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.uae-footer {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 5% 28px;
}
.uae-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .uae-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .uae-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.uae-footer__brand {}
.uae-footer__logo-wrap { margin-bottom: 16px; }
.uae-footer__logo { height: 48px; width: auto; }
.uae-footer__logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  text-transform: uppercase;
}
.uae-footer__tagline {
  font-size: 1rem;
  color: #555;
  font-weight: 300;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.uae-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.uae-footer__social-link {
  color: #555;
  transition: color 0.25s;
}
.uae-footer__social-link:hover { color: #fff; }
.uae-footer__col {}
.uae-footer__col-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #444;
  margin-bottom: 20px;
}
.uae-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.uae-footer__link {
  color: #aaa;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.25s;
}
.uae-footer__link:hover { color: #fff; }
.uae-footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.uae-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aaa;
  font-size: 0.88rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.25s;
}
a.uae-footer__contact-item:hover { color: #fff; }
.uae-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.uae-footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
  font-weight: 300;
}
.uae-footer__credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
  font-weight: 300;
  margin-top: 4px;
}
.uae-footer__credit-link {
  color: #41B649;
  text-decoration: none;
  transition: color 0.25s;
}
.uae-footer__credit-link:hover { color: #fff; }

/* ─── WordPress Admin Bar Offset ───────────────────────────────────────────── */
.admin-bar .uae-nav { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .uae-nav { top: 46px; }
  .admin-bar .uae-mobile-menu { top: calc(68px + 46px); }
}

/* ─── Heading colour helpers ─────────────────────────────────────────────── */
.uae-heading-green { color: #41B649; }

/* ─── Shared button sm ───────────────────────────────────────────────────── */
.uae-btn--sm {
  font-size: 0.85rem;
  padding: 12px 24px;
}

/* ─── Page Header (interior pages) ─────────────────────────────────────── */
.uae-page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: #0a0a0a;
  overflow: hidden;
}
.uae-page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.35);
}
.uae-page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%);
}
.uae-page-header__bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #41B649;
}
.uae-page-header__inner {
  position: relative;
  width: 100%;
  padding: 72px 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.uae-page-header__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.uae-eyebrow-line-sm {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #41B649;
  flex-shrink: 0;
}
.uae-page-header__h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  color: #fff;
  max-width: 700px;
  margin-bottom: 16px;
}
.uae-page-header__subtitle {
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.uae-breadcrumb-bar {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.uae-breadcrumb-bar__inner {
  padding: 12px 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.uae-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}
.uae-breadcrumb__link {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s;
}
.uae-breadcrumb__link:hover { color: #41B649; }
.uae-breadcrumb__sep {
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.uae-breadcrumb__current {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

/* ─── Services Intro Section ────────────────────────────────────────────── */
.uae-services-intro {
  background: #0a0a0a;
  padding: 72px 5%;
}
.uae-services-intro__inner {
  max-width: 860px;
  margin: 0 auto;
}
.uae-services-intro__inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .uae-services-intro__inner--split { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.uae-services-intro__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.uae-services-intro__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.uae-services-intro__content p {
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.uae-services-intro__content p:last-child { margin-bottom: 0; }

/* ─── Services Detail Grid ──────────────────────────────────────────────── */
.uae-services-detail {
  background: #111;
  padding: 80px 5%;
}
.uae-services-detail__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-services-detail__header {
  text-align: center;
  margin-bottom: 56px;
}
.uae-services-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .uae-services-detail__grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Service Detail Card ───────────────────────────────────────────────── */
.uae-svc-detail-card {
  display: block;
  position: relative;
  background: #141414;
  padding: 40px 36px 48px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.35s, background 0.35s;
  text-decoration: none;
  color: inherit;
}
.uae-svc-detail-card:hover {
  border-color: rgba(65,182,73,0.25);
  background: #161616;
}
.uae-svc-detail-card:hover .uae-svc-detail-card__num {
  color: rgba(65,182,73,0.08);
}
.uae-svc-detail-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}
.uae-svc-detail-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.uae-svc-detail-card__icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(65,182,73,0.1);
  border: 1px solid rgba(65,182,73,0.2);
}
.uae-svc-detail-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #41B649;
  margin-bottom: 4px;
}
.uae-svc-detail-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.65rem;
  line-height: 1;
  color: #fff;
}
.uae-svc-detail-card__img {
  height: 200px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.uae-svc-detail-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  display: block;
}
.uae-svc-detail-card__body {
  position: relative;
  z-index: 1;
}
.uae-svc-detail-card__body p {
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 14px;
}
.uae-svc-detail-card__body p:last-child { margin-bottom: 0; }

/* ─── FAQ Section ───────────────────────────────────────────────────────── */
.uae-faq {
  background: #0d0d0d;
  padding: 96px 5%;
}
.uae-faq__inner {
  max-width: 860px;
  margin: 0 auto;
}
.uae-faq__header {
  margin-bottom: 48px;
}
.uae-section-heading--left {
  text-align: left;
}
.uae-faq__list {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.uae-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.uae-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
}
.uae-faq__question-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.uae-faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(65,182,73,0.3);
  color: #41B649;
  transition: transform 0.25s;
}
.uae-faq__item.open .uae-faq__icon { transform: rotate(45deg); }
.uae-faq__answer {
  display: none;
  padding-bottom: 28px;
}
.uae-faq__item.open .uae-faq__answer { display: block; }
.uae-faq__answer p {
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */

/* ── Our Story ── */
.uae-about-story {
  background: #0a0a0a;
  padding: 96px 5%;
}
.uae-about-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .uae-about-story__inner { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.uae-about-story__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.uae-about-story__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 32px;
}
.uae-about-story__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.uae-about-story__body p {
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin: 0;
}
.uae-about-story__image-col {
  position: relative;
}
.uae-about-story__image-wrap {
  position: relative;
  width: 100%;
  border-left: 4px solid #41B649;
}
.uae-about-story__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.uae-about-story__image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  border-left: 4px solid #41B649;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.18);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.uae-about-story__image-placeholder svg { color: rgba(255,255,255,0.12); }
.uae-about-story__accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 64px;
  height: 64px;
  background: rgba(65,182,73,0.08);
  border: 1px solid rgba(65,182,73,0.2);
}

/* ── Why Choose Us ── */
.uae-about-why {
  background: #0d0d0d;
  padding: 96px 5%;
}
.uae-about-why__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-about-why__header {
  text-align: center;
  margin-bottom: 56px;
}
.uae-about-why__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: #fff;
}
.uae-about-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .uae-about-why__grid { grid-template-columns: 1fr 1fr; }
}
.uae-about-why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.uae-about-why-card:hover { background: #1a1a1a; }
.uae-about-why-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(65,182,73,0.1);
  border: 1px solid rgba(65,182,73,0.2);
}
.uae-about-why-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
}
.uae-about-why-card__desc {
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

/* ── Stats Row ── */
.uae-about-stats {
  background: #000;
  padding: 72px 5%;
}
.uae-about-stats__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-about-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 1024px) {
  .uae-about-stats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Our Values ── */
.uae-about-values {
  background: #0a0a0a;
  padding: 96px 5%;
}
.uae-about-values__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-about-values__header {
  margin-bottom: 56px;
}
.uae-about-values__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: #fff;
}
.uae-about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .uae-about-values__grid { grid-template-columns: repeat(3, 1fr); }
}
.uae-value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid #41B649;
}
.uae-value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(65,182,73,0.1);
  margin-bottom: 24px;
}
.uae-value-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 12px;
}
.uae-value-card__desc {
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE SERVICE PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Service Overview ───────────────────────────────────────────────────── */
.uae-svc-overview {
  background: #0a0a0a;
  padding: 96px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.uae-svc-overview__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .uae-svc-overview__inner { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.uae-svc-overview__header { margin-bottom: 40px; }
.uae-svc-overview__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  color: #fff;
  margin: 16px 0 0;
}
.uae-svc-overview__body { }
.uae-svc-overview__body p {
  font-weight: 300;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}
.uae-svc-overview__body p:last-child { margin-bottom: 0; }

/* ─── Service Process ────────────────────────────────────────────────────── */
.uae-svc-process {
  background: #000;
  padding: 80px 5%;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.uae-svc-process__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-svc-process__header {
  text-align: center;
  margin-bottom: 56px;
}
.uae-svc-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .uae-svc-process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .uae-svc-process__grid { grid-template-columns: repeat(4, 1fr); }
}
.uae-process-step {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.uae-process-step:hover,
.uae-process-step.is-active { border-color: rgba(65,182,73,0.25); background: rgba(65,182,73,0.04); }
.uae-process-step:hover .uae-process-step__title,
.uae-process-step.is-active .uae-process-step__title { color: #41B649; }
.uae-process-step__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.2;
  pointer-events: none;
}
.uae-process-step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
  color: rgba(65,182,73,0.12);
  letter-spacing: -2px;
  margin-bottom: 16px;
  user-select: none;
}
.uae-process-step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 10px;
}
.uae-process-step__desc {
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

/* ─── Service Why It Matters ─────────────────────────────────────────────── */
.uae-svc-why {
  background: #0a0a0a;
  padding: 80px 5%;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.uae-svc-why__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-svc-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .uae-svc-why__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.uae-svc-why__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  color: #fff;
  margin: 16px 0 28px;
}
.uae-svc-why__body { margin-bottom: 28px; }
.uae-svc-why__body p {
  font-weight: 300;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 14px;
}
.uae-svc-why__body p:last-child { margin-bottom: 0; }
.uae-svc-why__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.uae-svc-why__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.uae-svc-why__img-wrap { display: none; }
@media (min-width: 1024px) {
  .uae-svc-why__img-wrap { display: block; }
}

/* ── Carousel ── */
.uae-svc-why__carousel {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color 0.3s;
}
.uae-svc-why__carousel:hover { border-color: rgba(65,182,73,0.2); }
.uae-svc-why__slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.uae-svc-why__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.uae-svc-why__img-inner { position: relative; }
.uae-svc-why__img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.8);
}
.uae-svc-why__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.uae-svc-why__badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #fff;
}
.uae-svc-why__badge-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ── Carousel controls ── */
.uae-svc-why__carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #0d0d0d;
}
.uae-svc-why__carousel-caption {
  flex: 1;
  min-width: 0;
}
.uae-svc-why__carousel-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.uae-svc-why__carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.uae-svc-why__carousel-btn:hover {
  background: rgba(65,182,73,0.25);
  border-color: rgba(65,182,73,0.5);
}

/* ─── Related Services ───────────────────────────────────────────────────── */
.uae-svc-related {
  background: #000;
  padding: 80px 5%;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.uae-svc-related__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.uae-svc-related__header {
  text-align: center;
  margin-bottom: 52px;
}
.uae-svc-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .uae-svc-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .uae-svc-related__grid { grid-template-columns: repeat(3, 1fr); }
}
.uae-related-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, background 0.3s;
}
.uae-related-card:hover {
  border-color: rgba(65,182,73,0.25);
  background: #141414;
}
.uae-related-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(65,182,73,0.08);
  border: 1px solid rgba(65,182,73,0.2);
}
.uae-related-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.8px;
  color: #fff;
  margin-bottom: 8px;
}
.uae-related-card__desc {
  font-weight: 300;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 12px;
}
.uae-related-card--all {
  border-style: dashed;
  border-color: rgba(65,182,73,0.2);
  justify-content: center;
  align-items: center;
  min-height: 80px;
}
.uae-related-card--all:hover {
  border-color: rgba(65,182,73,0.45);
  background: #141414;
}
.uae-related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #41B649;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
