.elementor-8662 .elementor-element.elementor-element-de3ec6b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-1d7dcc1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-bcd1895{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-30f6365{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-e364623{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-bf0bf55{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-b7f0b52{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-069e7da{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-be408af{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-bf1ff4a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-6fbd798{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8662 .elementor-element.elementor-element-04af40d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c7b53b1 *//* ============================================
YATEER — SITE HEADER
Scoped under .yth-header
Brand colours from the Yateer logo: red #E31E24, black #141414.
============================================ */

.yth-header {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}
.yth-header *, .yth-header *::before, .yth-header *::after { box-sizing: border-box; }
.yth-header.is-scrolled { box-shadow: 0 6px 20px rgba(20,20,20,0.08); }

.yth-header__inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5vw; gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Logo ---------- */
.yth-header__logo {
  display: flex; align-items: center; text-decoration: none; flex: none;
}
.yth-header__logo-img {
  height: 44px; width: auto; display: block;
}

/* ---------- Nav ---------- */
.yth-header__nav { flex: 1 1 auto; display: flex; justify-content: center; }
.yth-header__menu { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; flex-wrap: wrap; }
.yth-header__item { position: relative; }
.yth-header__link {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: var(--black); font-size: 14px; font-weight: 600; text-decoration: none;
  padding: 10px 16px; border-radius: 4px; transition: color 0.2s ease, background 0.2s ease;
}
.yth-header__link:hover { color: var(--red); background: #fff5f5; }
.yth-header__caret { font-size: 10px; transition: transform 0.25s ease; }
.yth-header__item--dropdown.is-open .yth-header__caret { transform: rotate(180deg); }

.yth-header__sublink--viewall { display: none; }

/* Dropdown (click-to-toggle on all screen sizes) */
.yth-header__dropdown {
  list-style: none; margin: 0; padding: 10px;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid #eee; border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20,20,20,0.12);
  min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.yth-header__item--dropdown.is-open .yth-header__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.yth-header__dropdown li + li { margin-top: 2px; }
.yth-header__dropdown a {
  display: block; color: var(--black); font-size: 13.5px; font-weight: 500;
  text-decoration: none; padding: 10px 14px; border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.yth-header__dropdown a:hover { background: #fff4f4; color: var(--red); padding-left: 18px; }
.yth-header__dropdown li:first-child a { color: var(--red); font-weight: 700; border-bottom: 1px solid #f1f1f1; border-radius: 6px 6px 0 0; margin-bottom: 4px; padding-bottom: 12px; }

/* ---------- Actions ---------- */
.yth-header__actions { display: flex; align-items: center; gap: 14px; flex: none; }

.yth-header__contact {
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; text-decoration: none;
  padding: 10px 18px; border-radius: 30px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.yth-header__contact:hover { background: #b3151a; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(227,30,36,0.3); }
.yth-header__contact-icon { width: 16px; height: 16px; flex: none; display: flex; }
.yth-header__contact-icon svg { width: 100%; height: 100%; }
.yth-header__contact-text { display: flex; flex-direction: column; line-height: 1.2; }
.yth-header__contact-label { font-size: 9.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.85; }
.yth-header__contact-num { font-size: 13px; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .yth-header__inner { padding: 12px 5vw; justify-content: space-between; }
  .yth-header__logo-img { height: 38px; }

  .yth-header__nav { order: 3; flex: 1 1 100%; justify-content: flex-start; }
  .yth-header__menu { gap: 2px; }
  .yth-header__link { padding: 9px 12px; font-size: 13.5px; }

  .yth-header__dropdown { left: 0; min-width: 240px; }

  .yth-header__contact-text { display: none; }
  .yth-header__contact { padding: 10px; }
}

@media (max-width: 480px) {
  .yth-header__logo-img { height: 32px; }
  .yth-header__menu { width: 100%; }
  .yth-header__link { flex: 1; justify-content: center; }
  .yth-header__dropdown { left: 0; right: 0; min-width: 0; width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-26f7fe6 *//* ============================================
YATEER x LA PALMERA CASE STUDY — SECTION 1: HERO
Scoped under .ylp-hero
Brand colours from the Yateer logo: red #E31E24, black #141414.
============================================ */

.ylp-hero {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  background: var(--black);
  overflow: hidden;
  box-sizing: border-box;
}
.ylp-hero *, .ylp-hero *::before, .ylp-hero *::after { box-sizing: border-box; }

.ylp-hero__bg { position: relative; width: 100%; min-height: 500px; }
.ylp-hero__img {
  width: 100%; height: 100%; min-height: 500px;
  object-fit: cover; object-position: center; display: block;
}
.ylp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,0.96) 0%, rgba(20,20,20,0.86) 42%, rgba(227,30,36,0.3) 100%);
}

.ylp-hero__inner {
  position: absolute; top: 0; left: 0; height: 100%; min-height: 500px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 5vw; max-width: 700px;
}

.ylp-hero__eyebrow {
  display: inline-block; color: #fff; background: var(--red);
  font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px; margin: 0 0 20px; width: fit-content;
}
.ylp-hero__title {
  color: #fff; font-size: clamp(25px, 3.4vw, 42px); line-height: 1.22;
  font-weight: 700; margin: 0 0 18px; letter-spacing: -0.5px;
}
.ylp-hero__desc {
  color: #d8d8d8; font-size: 15px; line-height: 1.7; max-width: 560px; margin: 0 0 34px;
}

.ylp-hero__meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 30px;
  border-top: 1px solid rgba(255,255,255,0.18); padding-top: 24px;
}
.ylp-hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.ylp-hero__meta-label {
  color: var(--red); font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}
.ylp-hero__meta-value { color: #fff; font-size: 13px; font-weight: 500; line-height: 1.4; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .ylp-hero__bg, .ylp-hero__img, .ylp-hero__inner { min-height: 580px; }
  .ylp-hero__inner { padding: 44px 6vw; max-width: 100%; }
  .ylp-hero__overlay { background: linear-gradient(180deg, rgba(20,20,20,0.55) 0%, rgba(20,20,20,0.92) 60%, rgba(20,20,20,0.98) 100%); }
  .ylp-hero__title { font-size: 25px; }
  .ylp-hero__meta { grid-template-columns: 1fr; gap: 14px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f3a9971 *//* ============================================
YATEER x LA PALMERA — SECTION 2: PROJECT SNAPSHOT
Scoped under .ylp-snapshot
============================================ */

.ylp-snapshot {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  padding: 60px 5vw;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}
.ylp-snapshot *, .ylp-snapshot *::before, .ylp-snapshot *::after { box-sizing: border-box; }

.ylp-snapshot__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.ylp-snapshot__card {
  border: 1px solid #eee; border-top: 3px solid var(--red); border-radius: 8px;
  padding: 28px 26px; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ylp-snapshot__card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(20,20,20,0.08); }

.ylp-snapshot__icon { display: flex; width: 34px; height: 34px; color: var(--red); margin-bottom: 16px; }
.ylp-snapshot__icon svg { width: 100%; height: 100%; }

.ylp-snapshot__card h3 { color: var(--black); font-size: 16px; font-weight: 700; margin: 0 0 14px; }

.ylp-snapshot__card ul { list-style: none; margin: 0; padding: 0; }
.ylp-snapshot__card li {
  color: #555; font-size: 13px; line-height: 1.7;
  padding: 6px 0 6px 16px; position: relative; border-bottom: 1px dashed #eee;
}
.ylp-snapshot__card li:last-child { border-bottom: none; }
.ylp-snapshot__card li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
}
.ylp-snapshot__card li strong { color: var(--black); font-weight: 600; }

.ylp-snapshot__card p { color: #666; font-size: 13.5px; line-height: 1.75; margin: 0; }

.ylp-snapshot__badge {
  margin-top: 16px; display: inline-block; background: #eafaf0; color: #2f8a4e;
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ylp-snapshot__grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 480px) {
  .ylp-snapshot { padding: 44px 6vw; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a6bc3db *//* ============================================
YATEER x LA PALMERA — SECTION 3: CHALLENGE & OBJECTIVE
Scoped under .ylp-challenge
============================================ */

.ylp-challenge {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f6f5;
  padding: 70px 5vw;
  box-sizing: border-box;
}
.ylp-challenge *, .ylp-challenge *::before, .ylp-challenge *::after { box-sizing: border-box; }

.ylp-challenge__wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}

.ylp-challenge__eyebrow {
  display: inline-block; color: var(--red); font-size: 12.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin: 0 0 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--red);
}
.ylp-challenge__eyebrow--alt { color: var(--black); border-color: var(--black); }

.ylp-challenge__col h2 {
  color: var(--black); font-size: clamp(20px, 2.2vw, 25px); font-weight: 700; line-height: 1.32; margin: 0 0 16px;
}
.ylp-challenge__lead { color: var(--black); font-size: 14.5px; font-weight: 500; line-height: 1.7; margin: 0 0 14px; }
.ylp-challenge__col > p:not(.ylp-challenge__lead):not(.ylp-challenge__note) {
  color: #666; font-size: 13.5px; line-height: 1.75; margin: 0 0 20px;
}

.ylp-challenge__issues { margin-bottom: 16px; }
.ylp-challenge__issues-label {
  color: var(--black); font-size: 12.5px; font-weight: 700; margin: 0 0 12px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.ylp-challenge__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ylp-challenge__chips span {
  background: #fff; border: 1px solid #eee; color: var(--black);
  font-size: 12px; font-weight: 500; padding: 7px 14px; border-radius: 20px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.ylp-challenge__chips span:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

.ylp-challenge__note { color: #777; font-size: 13px; line-height: 1.7; margin: 0; font-style: italic; }

.ylp-challenge__quote {
  background: var(--black); color: #fff; border-radius: 8px; padding: 22px 26px;
  font-size: 14.5px; font-weight: 500; line-height: 1.6; border-left: 3px solid var(--red);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ylp-challenge__wrap { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 480px) {
  .ylp-challenge { padding: 50px 6vw; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5cb7e0c *//* ============================================
YATEER x LA PALMERA — SECTION 4: OUR SOLUTION
Scoped under .ylp-solution
============================================ */

.ylp-solution {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  padding: 76px 5vw;
  box-sizing: border-box;
}
.ylp-solution *, .ylp-solution *::before, .ylp-solution *::after { box-sizing: border-box; }

.ylp-solution__head { max-width: 780px; margin: 0 auto 50px; text-align: center; }
.ylp-solution__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 12px;
}
.ylp-solution__head h2 { color: var(--black); font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; line-height: 1.35; margin: 0; }

.ylp-solution__list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; }

.ylp-solution__item {
  display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 26px 0;
  border-bottom: 1px solid #eee; transition: background 0.25s ease;
}
.ylp-solution__item:last-child { border-bottom: none; }
.ylp-solution__item:hover { background: #fafafa; }

.ylp-solution__num {
  font-size: 40px; font-weight: 800; color: transparent;
  -webkit-text-stroke: 1.5px var(--red); line-height: 1; transition: color 0.25s ease;
}
.ylp-solution__item:hover .ylp-solution__num { color: var(--red); }

.ylp-solution__body h3 { color: var(--black); font-size: 17px; font-weight: 700; margin: 4px 0 10px; }
.ylp-solution__body p { color: #666; font-size: 14px; line-height: 1.75; margin: 0; max-width: 620px; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .ylp-solution { padding: 54px 6vw; }
  .ylp-solution__item { grid-template-columns: 50px 1fr; gap: 14px; padding: 20px 0; }
  .ylp-solution__num { font-size: 30px; }
  .ylp-solution__body h3 { font-size: 15.5px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-245c28a *//* ============================================
YATEER x LA PALMERA — SECTION 5: OUR WORKFLOW
Scoped under .ylp-workflow
============================================ */

.ylp-workflow {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  padding: 76px 5vw;
  box-sizing: border-box;
}
.ylp-workflow *, .ylp-workflow *::before, .ylp-workflow *::after { box-sizing: border-box; }

.ylp-workflow__head { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.ylp-workflow__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 12px;
}
.ylp-workflow__head h2 { color: #fff; font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; margin: 0; }

.ylp-workflow__pipeline {
  max-width: 480px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}

.ylp-workflow__stage {
  width: 100%; background: #1c1c1c; border: 1px solid #2a2a2a; border-left: 4px solid var(--red);
  border-radius: 6px; padding: 16px 22px; color: #fff; font-size: 14px; font-weight: 600;
  text-align: center; transition: background 0.25s ease, transform 0.25s ease;
}
.ylp-workflow__stage:hover { background: #232323; transform: translateX(4px); }
.ylp-workflow__stage--final { background: var(--red); border-left-color: #fff; }

.ylp-workflow__arrow { color: var(--red); font-size: 18px; line-height: 1; padding: 2px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .ylp-workflow { padding: 54px 6vw; }
  .ylp-workflow__stage { font-size: 13px; padding: 14px 18px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3074100 *//* ============================================
YATEER x LA PALMERA — SECTION 6: TIMELINE & RESULTS
Scoped under .ylp-results
============================================ */

.ylp-results {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f6f5;
  padding: 76px 5vw;
  box-sizing: border-box;
}
.ylp-results *, .ylp-results *::before, .ylp-results *::after { box-sizing: border-box; }

.ylp-results__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 10px;
}
.ylp-results h2 { color: var(--black); font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; line-height: 1.35; margin: 0 0 32px; }

.ylp-results__timeline { max-width: 760px; margin: 0 auto 70px; }

.ylp-results__table { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #eee; }
.ylp-results__row {
  display: grid; grid-template-columns: 2fr 1fr; padding: 15px 24px;
  border-bottom: 1px solid #f1f1f1; font-size: 13.5px;
}
.ylp-results__row:last-child { border-bottom: none; }
.ylp-results__row--head {
  background: var(--black); color: #fff; font-weight: 700; text-transform: uppercase;
  font-size: 11.5px; letter-spacing: 0.5px;
}
.ylp-results__row:not(.ylp-results__row--head) span:first-child { color: var(--black); font-weight: 500; }
.ylp-results__row:not(.ylp-results__row--head) span:last-child { color: #888; text-align: right; }
.ylp-results__row--final { background: #fff4f4; }
.ylp-results__row--final span { color: var(--red) !important; font-weight: 700 !important; }

.ylp-results__outcomes { max-width: 1200px; margin: 0 auto; }

.ylp-results__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.ylp-results__item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid #eee; border-radius: 8px;
  padding: 15px 18px; color: var(--black); font-size: 13.5px; font-weight: 500;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.ylp-results__item:hover { transform: translateX(4px); border-color: var(--red); }
.ylp-results__item span {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .ylp-results__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ylp-results { padding: 54px 6vw; }
  .ylp-results__row { padding: 12px 16px; font-size: 12.5px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-72b34c3 *//* ============================================
YATEER x LA PALMERA — SECTION 7: WHY VISUALIZATION MADE THE DIFFERENCE
Scoped under .ylp-impact
============================================ */

.ylp-impact {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  padding: 80px 5vw;
  box-sizing: border-box;
}
.ylp-impact *, .ylp-impact *::before, .ylp-impact *::after { box-sizing: border-box; }

.ylp-impact__inner { max-width: 820px; margin: 0 auto; }

.ylp-impact__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 14px;
}
.ylp-impact h2 { color: var(--black); font-size: clamp(21px, 2.8vw, 28px); font-weight: 700; line-height: 1.4; margin: 0 0 22px; }
.ylp-impact__body { color: #666; font-size: 14.5px; line-height: 1.8; margin: 0 0 34px; }

.ylp-impact__list { margin-bottom: 34px; }
.ylp-impact__list h3 { color: var(--black); font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.ylp-impact__item {
  display: flex; align-items: flex-start; gap: 12px;
  background: #f7f6f5; border-radius: 8px; padding: 14px 18px; margin-bottom: 10px;
  color: var(--black); font-size: 13.5px; font-weight: 500; line-height: 1.6;
  transition: transform 0.2s ease, background 0.2s ease;
}
.ylp-impact__item:hover { transform: translateX(4px); background: #fff4f4; }
.ylp-impact__item::before {
  content: '→'; flex: none; color: var(--red); font-weight: 700; font-size: 15px;
}

.ylp-impact__quote {
  border-left: 3px solid var(--red); margin: 0 0 26px; padding: 6px 0 6px 24px;
  color: var(--black); font-size: 19px; font-weight: 600; line-height: 1.55; font-style: normal;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .ylp-impact { padding: 56px 6vw; }
  .ylp-impact__quote { font-size: 16.5px; padding-left: 18px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fdf0ae1 *//* ============================================
YATEER x LA PALMERA — SECTION 8: PROJECT GALLERY
Scoped under .ylp-gallery
============================================ */

.ylp-gallery {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f6f5;
  padding: 76px 5vw;
  box-sizing: border-box;
}
.ylp-gallery *, .ylp-gallery *::before, .ylp-gallery *::after { box-sizing: border-box; }

.ylp-gallery__head { max-width: 900px; margin: 0 auto 30px; text-align: center; }
.ylp-gallery__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 12px;
}
.ylp-gallery__head h2 { color: var(--black); font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; margin: 0; }

.ylp-gallery__tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.ylp-gallery__tab {
  background: #fff; border: 1px solid #eee; color: var(--black); font-family: inherit;
  font-size: 13.5px; font-weight: 600; padding: 11px 26px; border-radius: 30px; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.ylp-gallery__tab:hover { transform: translateY(-2px); }
.ylp-gallery__tab.is-active { background: var(--red); color: #fff; border-color: var(--red); }

.ylp-gallery__grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.ylp-gallery__item {
  aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; cursor: zoom-in; background: #eee; position: relative;
}
.ylp-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ylp-gallery__item:hover img { transform: scale(1.08); }
.ylp-gallery__item::after {
  content: '🔍'; position: absolute; bottom: 10px; right: 10px; width: 30px; height: 30px;
  background: rgba(20,20,20,0.65); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  opacity: 0; transition: opacity 0.25s ease;
}
.ylp-gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.ylp-gallery__lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,0.94);
  display: none; align-items: center; justify-content: center; z-index: 9999; padding: 30px;
}
.ylp-gallery__lightbox.is-open { display: flex; }
.ylp-gallery__lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.ylp-gallery__lightbox-close {
  position: absolute; top: 24px; right: 28px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff; border: none; font-size: 16px; cursor: pointer;
  transition: transform 0.2s ease;
}
.ylp-gallery__lightbox-close:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ylp-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .ylp-gallery { padding: 54px 6vw; }
  .ylp-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ylp-gallery__tab { padding: 9px 20px; font-size: 12.5px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e3c3f2d *//* ============================================
YATEER x LA PALMERA — SECTION 9: FINAL CTA
Scoped under .ylp-cta
============================================ */

.ylp-cta {
  --red: #e31e24;
  --red-dark: #b3151a;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 80px 5vw;
  box-sizing: border-box;
  text-align: center;
}
.ylp-cta *, .ylp-cta *::before, .ylp-cta *::after { box-sizing: border-box; }

.ylp-cta__inner { max-width: 780px; margin: 0 auto; }

.ylp-cta h2 { color: #fff; font-size: clamp(23px, 3vw, 32px); font-weight: 700; line-height: 1.3; margin: 0 0 18px; }
.ylp-cta__inner > p:first-of-type { color: rgba(255,255,255,0.92); font-size: 14.5px; line-height: 1.75; margin: 0 0 30px; }

.ylp-cta__services {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px;
}
.ylp-cta__services span {
  background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 12px; font-weight: 500; padding: 8px 16px; border-radius: 20px;
  transition: background 0.25s ease;
}
.ylp-cta__services span:hover { background: var(--black); }

.ylp-cta__sub { color: rgba(255,255,255,0.85); font-size: 13.5px; line-height: 1.7; margin: 0 0 34px; }

.ylp-cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.ylp-cta__btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 4px;
  font-size: 14.5px; font-weight: 700; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; white-space: nowrap;
}
.ylp-cta__btn--primary { background: var(--black); color: #fff; }
.ylp-cta__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.3); }
.ylp-cta__btn--primary span { transition: transform 0.25s ease; }
.ylp-cta__btn--primary:hover span { transform: translateX(4px); }
.ylp-cta__btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.ylp-cta__btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .ylp-cta { padding: 56px 6vw; }
  .ylp-cta__actions { flex-direction: column; }
  .ylp-cta__btn { width: 100%; justify-content: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9a7231e *//* ============================================
YATEER — SECTION 5: FEATURED PROJECTS
Scoped under .yt-projects
============================================ */

.yt-projects {
  --navy: #0e2438;
  --gold: #d99a3f;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f4f1ea;
  padding: 70px 5vw 80px;
  box-sizing: border-box;
}
.yt-projects *, .yt-projects *::before, .yt-projects *::after { box-sizing: border-box; }

.yt-projects__head {
  max-width: 1320px;
  margin: 0 auto 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.yt-projects__eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.yt-projects__title {
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0;
}
.yt-projects__viewall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.yt-projects__viewall:hover { background: var(--gold); transform: translateY(-2px); }

.yt-projects__row-wrap { position: relative; max-width: 1320px; margin: 0 auto; }

.yt-projects__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.yt-projects__row::-webkit-scrollbar { display: none; }

.yt-projects__card { scroll-snap-align: start; }

.yt-projects__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #ddd;
}
.yt-projects__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.yt-projects__card:hover .yt-projects__img img { transform: scale(1.08); }

.yt-projects__card h3 {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}
.yt-projects__card p {
  color: #8a8578;
  font-size: 12.5px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.yt-projects__nav {
  position: absolute;
  top: -66px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.yt-projects__nav:hover { background: var(--gold); transform: scale(1.06); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .yt-projects { padding: 50px 6vw 60px; }
  .yt-projects__row { grid-auto-columns: minmax(78%, 1fr); gap: 16px; }
  .yt-projects__nav { top: -58px; width: 36px; height: 36px; }
  .yt-projects__head { align-items: flex-start; }
  .yt-projects__viewall { padding: 11px 18px; font-size: 12.5px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1415b22 *//* ============================================
YATEER — SITE FOOTER
Scoped under .ytf-footer
Brand colours from the Yateer logo: red #E31E24, black #141414.
============================================ */

.ytf-footer {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  box-sizing: border-box;
}
.ytf-footer *, .ytf-footer *::before, .ytf-footer *::after { box-sizing: border-box; }

.ytf-footer__top {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding: 64px 5vw 50px;
}

/* ---------- Brand column ---------- */
.ytf-footer__logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; width: fit-content; margin-bottom: 18px; }
.ytf-footer__logo-mark { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: 2px; }
.ytf-footer__logo-sub { color: var(--red); font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }

.ytf-footer__tagline { color: #999; font-size: 13px; line-height: 1.7; margin: 0 0 18px; max-width: 300px; }

.ytf-footer__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 14px; font-weight: 700; text-decoration: none;
  transition: color 0.2s ease;
}
.ytf-footer__phone:hover { color: var(--red); }

/* ---------- Link columns ---------- */
.ytf-footer__col h3 {
  color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin: 0 0 20px;
}
.ytf-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ytf-footer__col a {
  color: #999; font-size: 13.5px; text-decoration: none; transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.ytf-footer__col a:hover { color: var(--red); padding-left: 4px; }

.ytf-footer__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-size: 13.5px; font-weight: 700;
  text-decoration: none; padding: 12px 22px; border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ytf-footer__cta:hover { background: #b3151a; transform: translateY(-2px); }
.ytf-footer__cta span { transition: transform 0.25s ease; }
.ytf-footer__cta:hover span { transform: translateX(4px); }

/* ---------- Bottom bar ---------- */
.ytf-footer__bottom {
  border-top: 1px solid #262626;
  padding: 22px 5vw;
  text-align: center;
}
.ytf-footer__bottom p { color: #777; font-size: 12px; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ytf-footer__top { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; padding: 54px 6vw 40px; }
}
@media (max-width: 560px) {
  .ytf-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .ytf-footer__tagline { max-width: 100%; }
}/* End custom CSS */