/* ==========================================================================
   Campaign landing pages — self-contained design system.

   Loaded after the Webflow bundle. Everything here is namespaced `lp-` so the
   landing pages control their own layout, type scale and rhythm instead of
   inheriting Webflow classes built for a different page structure.
   --palmier-primary / --palmier-accent are injected per page by the layout.
   ========================================================================== */

:root {
  --lp-ink: #191b19;
  --lp-body: #55605a;
  --lp-muted: #8a938d;
  --lp-hairline: #e6e3dc;
  --lp-surface: #ffffff;
  --lp-surface-tint: #f7f5f1;
  --lp-surface-deep: #efece5;

  --lp-radius-sm: 8px;
  --lp-radius: 14px;
  --lp-radius-lg: 22px;

  --lp-shadow-sm: 0 1px 2px rgba(25, 27, 25, .05), 0 2px 8px rgba(25, 27, 25, .04);
  --lp-shadow: 0 4px 12px rgba(25, 27, 25, .06), 0 12px 32px rgba(25, 27, 25, .07);
  --lp-shadow-lg: 0 12px 28px rgba(25, 27, 25, .1), 0 28px 64px rgba(25, 27, 25, .12);

  --lp-gap: clamp(16px, 2vw, 24px);
  --lp-section-y: clamp(56px, 7vw, 104px);
  --lp-container: 1180px;

  --lp-header-h: 72px;

  --lp-ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

body.body {
  padding-top: var(--lp-header-h);
  color: var(--lp-ink);
  background: var(--lp-surface);
  -webkit-font-smoothing: antialiased;
}

.lp-page :where(h1, h2, h3, h4) {
  color: inherit;
  letter-spacing: -.015em;
  margin: 0;
}

.lp-page p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.lp-page img {
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.lp-section {
  padding: var(--lp-section-y) clamp(20px, 5vw, 40px);
  background: var(--lp-surface);
  color: var(--lp-ink);
}

.lp-section--tint { background: var(--lp-surface-tint); }
.lp-section--deep { background: var(--lp-surface-deep); }

.lp-section--brand {
  background: var(--palmier-primary);
  color: #fff;
}

.lp-container {
  width: 100%;
  max-width: var(--lp-container);
  margin-inline: auto;
}

.lp-container--narrow { max-width: 780px; }

/* Section heading ---------------------------------------------------------- */

.lp-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 56px);
  text-align: center;
}

.lp-head--start {
  margin-inline: 0;
  text-align: start;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--palmier-primary);
  margin-bottom: 14px;
}

.lp-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.lp-section--brand .lp-eyebrow { color: var(--palmier-accent); }

.lp-title {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.2;
  font-weight: 600;
}

.lp-sub {
  margin-top: 14px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
  color: var(--lp-body);
}

.lp-section--brand .lp-sub { color: rgba(255, 255, 255, .78); }

.lp-note {
  margin-top: clamp(24px, 3vw, 36px);
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: var(--lp-muted);
}

/* Buttons ------------------------------------------------------------------ */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease), background-color .25s var(--lp-ease), color .25s var(--lp-ease);
}

.lp-btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

.lp-btn--primary {
  background: var(--palmier-primary);
  color: #fff;
  box-shadow: var(--lp-shadow-sm);
}

.lp-btn--accent {
  background: var(--palmier-accent);
  color: var(--palmier-primary);
  box-shadow: var(--lp-shadow-sm);
}

.lp-btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.lp-btn--light {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  backdrop-filter: blur(6px);
}

.lp-btn:hover,
.lp-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow);
  color: inherit;
}

.lp-btn--primary:hover, .lp-btn--primary:focus-visible { color: #fff; }
.lp-btn--accent:hover, .lp-btn--accent:focus-visible { color: var(--palmier-primary); }

.lp-btn--lg { padding: 18px 40px; font-size: 16px; }

.lp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--palmier-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .2s var(--lp-ease);
}

.lp-link:hover { opacity: .7; color: var(--palmier-primary); }

/* --------------------------------------------------------------------------
   Sticky header
   -------------------------------------------------------------------------- */

.lp-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--lp-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 40px);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-hairline);
}

.lp-header__logo { display: inline-flex; align-items: center; }
.lp-header__logo img { height: 38px; width: auto; }

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

.lp-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--palmier-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s var(--lp-ease);
}

.lp-header__cta:hover { opacity: .88; color: #fff; }
.lp-header__cta svg { width: 17px; height: 17px; fill: currentColor; }

.lp-header__phone { direction: ltr; unicode-bidi: isolate; }

.lp-header__enquire { padding: 11px 22px; font-size: 14px; color: var(--lp-ink); }
.lp-header__enquire:hover { color: var(--palmier-primary); }

@media (max-width: 900px) {
  .lp-header__enquire { display: none; }
}

@media (max-width: 560px) {
  .lp-header__cta span { display: none; }
  .lp-header__cta { padding: 11px 14px; }
}

/* --------------------------------------------------------------------------
   Banner
   -------------------------------------------------------------------------- */

.lp-banner {
  position: relative;
  min-height: clamp(520px, 82vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #14170f;
  isolation: isolate;
}

.lp-banner__media,
.lp-banner__video,
.lp-banner__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-banner__video { width: 100%; height: 100%; object-fit: cover; }
.lp-banner__media { background-size: cover; background-position: center; }

.lp-banner__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--lp-ease), transform 6s linear;
}

.lp-banner__slide.is-active { opacity: 1; transform: scale(1); }

.lp-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10, 12, 9, .88) 0%, rgba(10, 12, 9, .45) 38%, rgba(10, 12, 9, .12) 68%, rgba(10, 12, 9, .38) 100%);
}

.lp-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--lp-container);
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 40px) clamp(64px, 8vw, 104px);
  color: #fff;
}

.lp-banner__inner { max-width: 720px; }

.lp-banner__location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .26);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.lp-banner__location svg { width: 15px; height: 15px; fill: var(--palmier-accent); flex: none; }

.lp-banner__title {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.04;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .3);
}

.lp-banner__subtitle {
  margin-top: 18px;
  max-width: 560px;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
}

.lp-banner__actions {
  margin-top: clamp(26px, 3.5vw, 38px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-banner__dots {
  position: absolute;
  z-index: 3;
  inset-block-end: 28px;
  inset-inline-end: clamp(20px, 5vw, 40px);
  display: flex;
  gap: 8px;
}

.lp-banner__dot {
  width: 32px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: background .3s var(--lp-ease);
}

.lp-banner__dot.is-active { background: var(--palmier-accent); }

/* --------------------------------------------------------------------------
   Trust bar — the stats strip directly under the banner
   -------------------------------------------------------------------------- */

.lp-trustbar {
  background: var(--palmier-primary);
  color: #fff;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 5vw, 40px);
}

.lp-trustbar__grid {
  max-width: var(--lp-container);
  margin-inline: auto;
  display: grid;
  /* A small min keeps three stats on one row even on a 360px phone, rather
     than stranding the third on a line of its own. */
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: clamp(12px, 3vw, 40px);
  text-align: center;
}

.lp-trustbar__value {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--palmier-accent);
}

.lp-trustbar__label {
  margin-top: 6px;
  font-size: clamp(11.5px, 1vw, 13px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .76);
}

/* --------------------------------------------------------------------------
   Company brief
   -------------------------------------------------------------------------- */

.lp-company {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.lp-company--with-logo { grid-template-columns: minmax(0, 240px) minmax(0, 1fr); }

.lp-company__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
  background: var(--lp-surface);
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-sm);
}

.lp-company__logo img { max-height: 92px; object-fit: contain; }

.lp-company__body p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.95;
  color: var(--lp-body);
  white-space: pre-line;
}

@media (max-width: 820px) {
  .lp-company--with-logo { grid-template-columns: 1fr; }
  .lp-company__logo { justify-self: start; padding: 20px 28px; }
  .lp-company__logo img { max-height: 64px; }
}

/* --------------------------------------------------------------------------
   Cover
   -------------------------------------------------------------------------- */

.lp-cover {
  position: relative;
  min-height: clamp(360px, 48vw, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 40px);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
}

.lp-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 12, 9, .62) 0%, rgba(10, 12, 9, .34) 62%, rgba(10, 12, 9, .5) 100%),
    linear-gradient(to bottom, rgba(10, 12, 9, .25), rgba(10, 12, 9, .45));
}

.lp-cover__content { position: relative; z-index: 1; max-width: 760px; }

.lp-cover__title {
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.18;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .45);
}

.lp-cover__subtitle {
  margin-top: 16px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.lp-prose {
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 2;
  color: var(--lp-body);
  white-space: pre-line;
}

.lp-prose--center { text-align: center; }

.lp-about__cta { margin-top: clamp(28px, 3vw, 40px); text-align: center; }

/* --------------------------------------------------------------------------
   Features
   -------------------------------------------------------------------------- */

.lp-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-gap);
}

.lp-feature {
  flex: 1 1 165px;
  max-width: 250px;
  padding: clamp(24px, 2.6vw, 32px) clamp(18px, 2vw, 24px);
  background: var(--lp-surface);
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-radius);
  text-align: center;
  transition: transform .3s var(--lp-ease), box-shadow .3s var(--lp-ease), border-color .3s var(--lp-ease);
}

.lp-feature:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--lp-shadow);
}

.lp-feature__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--palmier-accent) 34%, #fff);
}

.lp-feature__icon img { width: 30px; height: 30px; object-fit: contain; }
.lp-feature__icon svg { width: 26px; height: 26px; stroke: var(--palmier-primary); fill: none; stroke-width: 1.6; }

.lp-feature__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--lp-ink);
}

.lp-feature__description {
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--lp-muted);
}

/* --------------------------------------------------------------------------
   Payment plans
   -------------------------------------------------------------------------- */

.lp-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--lp-gap);
  align-items: stretch;
}

.lp-plan {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--lp-surface);
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-radius-lg);
  transition: transform .3s var(--lp-ease), box-shadow .3s var(--lp-ease);
}

.lp-plan:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow); }

.lp-plan--featured {
  border-color: var(--palmier-primary);
  box-shadow: var(--lp-shadow);
}

.lp-plan__flag {
  padding: 9px 20px;
  background: var(--palmier-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
}

.lp-plan__image { height: 150px; background-size: cover; background-position: center; }

.lp-plan__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 34px);
}

.lp-plan__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--lp-ink);
}

.lp-plan__figures {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 18px;
}

.lp-plan__figure-value {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--palmier-primary);
}

.lp-plan__figure-label {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--lp-muted);
}

.lp-plan__installment {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--lp-hairline);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--lp-ink);
}

.lp-plan__description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--lp-body);
}

.lp-plan__cta { margin-top: auto; padding-top: 24px; }
.lp-plan__cta .lp-btn { width: 100%; }

/* --------------------------------------------------------------------------
   Units
   -------------------------------------------------------------------------- */

.lp-units {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--lp-gap);
}

.lp-unit {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--lp-surface);
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-radius-lg);
  transition: transform .3s var(--lp-ease), box-shadow .3s var(--lp-ease);
}

.lp-unit:hover { transform: translateY(-5px); box-shadow: var(--lp-shadow-lg); }

.lp-unit__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--lp-surface-deep);
  background-size: cover;
  background-position: center;
}

.lp-unit__status {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--palmier-primary);
  font-size: 11.5px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.lp-unit__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
}

.lp-unit__type {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--lp-ink);
}

.lp-unit__specs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--lp-hairline);
}

.lp-unit__spec-label {
  font-size: 11.5px;
  line-height: 1.3;
  color: var(--lp-muted);
}

.lp-unit__spec-value {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-ink);
}

.lp-unit__price { margin-top: 18px; }

.lp-unit__price-label {
  font-size: 12px;
  color: var(--lp-muted);
}

.lp-unit__price-value {
  margin-top: 3px;
  font-size: clamp(22px, 2.2vw, 27px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--palmier-primary);
}

.lp-unit__links {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-unit__links .lp-btn { flex: 1 1 auto; padding: 12px 18px; font-size: 13.5px; }

/* --------------------------------------------------------------------------
   Split layout — location and masterplan
   -------------------------------------------------------------------------- */

.lp-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.lp-split__media {
  overflow: hidden;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  background: var(--lp-surface);
}

.lp-split__media img { display: block; width: 100%; height: auto; }

.lp-split__body .lp-head { margin-bottom: clamp(20px, 2.5vw, 28px); }

/* Landmark list ------------------------------------------------------------ */

.lp-landmarks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.lp-landmark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lp-hairline);
}

.lp-landmark:last-child { border-bottom: 0; }

.lp-landmark__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-ink);
}

.lp-landmark__distance {
  flex: none;
  padding: 5px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--palmier-accent) 30%, #fff);
  color: var(--palmier-primary);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

/* Facility list ------------------------------------------------------------ */

.lp-facilities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.lp-facility {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-radius-sm);
  font-size: 14px;
  line-height: 1.5;
}

.lp-facility::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--palmier-accent);
}

.lp-facility__name { font-weight: 600; color: var(--lp-ink); }
.lp-facility__details { display: block; margin-top: 2px; font-size: 12.5px; color: var(--lp-muted); }

.lp-split__actions { margin-top: clamp(24px, 3vw, 32px); display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------------
   Mid-page CTA band
   -------------------------------------------------------------------------- */

.lp-cta-band {
  padding: clamp(40px, 5vw, 68px) clamp(20px, 5vw, 40px);
  background: var(--palmier-primary);
  color: #fff;
  text-align: center;
}

.lp-cta-band__title {
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}

.lp-cta-band__sub {
  margin-top: 12px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
}

.lp-cta-band__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Videos
   -------------------------------------------------------------------------- */

.lp-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--lp-gap);
}

.lp-video {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--lp-radius-lg);
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  box-shadow: var(--lp-shadow-sm);
  transition: transform .3s var(--lp-ease), box-shadow .3s var(--lp-ease);
}

.lp-video:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }

.lp-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 9, .8), rgba(10, 12, 9, .05) 60%);
}

.lp-video__play {
  position: absolute;
  z-index: 2;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
}

.lp-video__play svg { width: 22px; height: 22px; fill: var(--palmier-primary); margin-inline-start: 3px; }

.lp-video__title {
  position: absolute;
  z-index: 2;
  inset-inline: 20px;
  inset-block-end: 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Lead form
   -------------------------------------------------------------------------- */

.lp-form-section {
  position: relative;
  padding: var(--lp-section-y) clamp(20px, 5vw, 40px);
  background: var(--palmier-primary);
  color: #fff;
  overflow: hidden;
}

.lp-form-section::before {
  content: "";
  position: absolute;
  inset-block-start: -20%;
  inset-inline-end: -10%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

.lp-form-grid {
  position: relative;
  z-index: 1;
  max-width: var(--lp-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.lp-form-intro .lp-title { color: #fff; }

.lp-form-points {
  list-style: none;
  margin: clamp(24px, 3vw, 32px) 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.lp-form-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
}

.lp-form-point svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: var(--palmier-accent);
}

.lp-form-card {
  padding: clamp(26px, 3.2vw, 40px);
  background: var(--lp-surface);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
}

.lp-form-card__title {
  font-size: 21px;
  font-weight: 600;
  color: var(--lp-ink);
}

.lp-form-card__hint {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--lp-muted);
}

/* Reset the shared lead-form component inside the landing card. The Webflow
   defaults lay labels beside inputs and uppercase the submit button, neither of
   which suits a two-column card or Arabic copy. */
.lp-form-card .form-block {
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 22px;
}

.lp-form-card .form { display: block; padding: 0; }

.lp-form-card .contact-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lp-form-card .contact-field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.lp-form-card .field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-ink);
  margin: 0;
}

.lp-form-card .text-field {
  min-height: 50px;
  width: 100%;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-surface-tint);
  font-size: 15px;
  color: var(--lp-ink);
  transition: border-color .2s var(--lp-ease), background-color .2s var(--lp-ease), box-shadow .2s var(--lp-ease);
}

.lp-form-card .text-field:focus {
  padding: 13px 16px;
  border-color: var(--palmier-primary);
  background: var(--lp-surface);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--palmier-primary) 14%, transparent);
  outline: none;
}

.lp-form-card .submit-button {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--palmier-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease), opacity .2s var(--lp-ease);
}

.lp-form-card .submit-button:hover {
  background: var(--palmier-primary);
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow);
}

.lp-form-card .submit-button:disabled { opacity: .6; transform: none; }

.lp-form-card .field-error {
  display: block;
  font-size: 12.5px;
  color: #c0392b;
}

.lp-form-card .lead-form-message {
  border-radius: var(--lp-radius-sm);
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.lp-footer {
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 40px);
  background: #12140f;
  color: rgba(255, 255, 255, .68);
  text-align: center;
}

.lp-footer__logo { height: 46px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .92; }

.lp-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  direction: ltr;
  unicode-bidi: isolate;
}

.lp-footer__phone svg { width: 18px; height: 18px; fill: var(--palmier-accent); }

.lp-footer__legal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Floating contact buttons
   Pinned to the right edge in BOTH directions, matching the brief.
   -------------------------------------------------------------------------- */

.lp-float-contact {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
  transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease);
}

.lp-float-btn:hover,
.lp-float-btn:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .34);
  color: #fff;
}

.lp-float-btn svg { width: 28px; height: 28px; fill: currentColor; }

.lp-float-whatsapp { background: #25d366; }
.lp-float-call { background: var(--palmier-primary); }

/* Mobile sticky CTA bar ----------------------------------------------------- */

.lp-mobile-cta {
  display: none;
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 997;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--lp-hairline);
}

.lp-mobile-cta .lp-btn { width: 100%; }

@media (max-width: 767px) {
  .lp-mobile-cta { display: block; }

  .lp-float-contact {
    right: 14px;
    bottom: 84px;
    gap: 10px;
  }

  .lp-float-btn { width: 50px; height: 50px; }
  .lp-float-btn svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-page *,
  .lp-banner__slide {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
