@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
  --ink: #1f1a16;
  --ink-soft: #7a7268;
  --paper: #ffffff;
  --paper-2: #f7f1e8;
  --card: #ffffff;
  --line: rgba(31, 26, 22, .1);
  --rose: var(--main, #C7A881);
  --rose-deep: var(--hover, #A8875F);
  --gold: #C7A881;
  --brand: #C7A881;
  --brand-soft: #f7f1e8;
  --shadow: 0 24px 60px rgba(31, 26, 22, .07);
  --radius: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Tajawal', sans-serif !important;
  color: var(--ink);
  background: #fff;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: .25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }

.elora-page {
  background: #fff;
}

.display-font {
  font-family: 'Cormorant Garamond', 'Tajawal', serif;
  letter-spacing: .01em;
}

html[lang="ar"] .display-font,
html[lang="ar"] .section-head h2,
html[lang="ar"] .about-copy h2,
html[lang="ar"] .service-card h3,
html[lang="ar"] .step-card h4,
html[lang="ar"] .hero-brand,
html[lang="ar"] .brand-word,
html[lang="ar"] .stat-item strong {
  font-family: 'Tajawal', sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.98);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes soft-pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(199,168,129,.35); }
  50% { box-shadow: 0 18px 42px rgba(199,168,129,.5); }
}
@keyframes shine {
  from { transform: translateX(-120%) skewX(-18deg); }
  to { transform: translateX(220%) skewX(-18deg); }
}
@keyframes pop-in {
  0% { transform: scale(.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Header */
.elora-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 1.15rem 0;
  transition: .35s var(--ease);
  background: transparent;
}
.elora-header.is-scrolled,
.elora-header.is-open {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(20,17,15,.06);
  padding: .75rem 0;
}
.elora-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.elora-header-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.elora-header .brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.elora-header .brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.brand-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.elora-header.is-scrolled .brand-word,
.elora-header.is-open .brand-word { color: var(--ink); }

.elora-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 0;
  flex: 1;
}
.elora-nav a {
  position: relative;
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.88);
  padding: .2rem 0;
}
.elora-nav a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: .3s var(--ease);
}
.elora-nav a:hover::after { transform: scaleX(1); }
.elora-header.is-scrolled .elora-nav a,
.elora-header.is-open .elora-nav a { color: var(--ink-soft); }
.elora-nav a:hover { color: var(--rose-deep); }

.elora-header-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.lang-btn {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: .42rem .9rem;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
}
.elora-header.is-scrolled .lang-btn,
.elora-header.is-open .lang-btn {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .55rem 1rem;
  font-size: .82rem;
  font-weight: 800;
  color: var(--ink) !important;
  background: #fff;
  transition: .3s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.elora-header.is-scrolled .nav-cta,
.elora-header.is-open .nav-cta {
  background: linear-gradient(135deg, #C7A881, #a8875f);
  color: #fff !important;
}

.btn-elora {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.55rem;
  font-weight: 800;
  color: #fff !important;
  background: linear-gradient(135deg, #d2b48c, #C7A881 45%, #a8875f);
  box-shadow: 0 14px 34px rgba(199,168,129,.35);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s ease, filter .3s ease;
  animation: soft-pulse 3.2s ease-in-out infinite;
}
.btn-elora::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-120%) skewX(-18deg);
}
.btn-elora:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.05);
  animation: none;
}
.btn-elora:hover::after {
  animation: shine .85s ease;
}
.btn-elora-outline {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .9rem 1.35rem;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff !important;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  transition: .3s var(--ease);
}
.btn-elora-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
  transform: translateY(-3px);
}
.btn-elora-dark {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .9rem 1.35rem;
  border: 1px solid var(--brand);
  color: var(--rose-deep) !important;
  font-weight: 700;
  background: var(--brand-soft);
  transition: .3s var(--ease);
}
.btn-elora-dark:hover {
  background: var(--brand);
  color: #fff !important;
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(199,168,129,.28);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  display: none;
  place-items: center;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: #fff;
  margin: 3.5px 0;
  transition: .25s ease;
}
.elora-header.is-scrolled .menu-toggle,
.elora-header.is-open .menu-toggle {
  border-color: var(--line);
  background: var(--paper);
}
.elora-header.is-scrolled .menu-toggle span,
.elora-header.is-open .menu-toggle span { background: var(--ink); }

.elora-hero .owl-carousel {
  /* Keep stage LTR so slides don't jump off-screen under html[dir=rtl] */
  direction: ltr;
}
.elora-hero .hero-content {
  direction: inherit;
}
html[dir="rtl"] .elora-hero .hero-content {
  direction: rtl;
  text-align: right;
}
.elora-hero .owl-carousel,
.elora-hero .owl-stage-outer,
.elora-hero .owl-stage,
.elora-hero .owl-item,
.elora-hero .item,
.hero-slide {
  height: 100vh;
  min-height: 680px;
}
.elora-hero .owl-item {
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-slide {
  position: relative;
  overflow: hidden;
  background-color: #171412;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-slide.is-fallback {
  background-image:
    radial-gradient(900px 480px at 70% 25%, rgba(199,168,129,.35), transparent 55%),
    linear-gradient(145deg, #14110f 0%, #2a221c 50%, #3a2e24 100%);
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(20,16,12,.42) 0%, rgba(20,16,12,.18) 52%, rgba(20,16,12,.06) 100%),
    linear-gradient(to top, rgba(20,16,12,.35), transparent 52%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 11vh;
  color: #fff;
}
.hero-brand {
  font-family: 'Cormorant Garamond', 'Tajawal', serif;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 .85rem;
  color: #fff;
}
.hero-brand span {
  color: var(--brand);
}
.hero-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  max-width: 560px;
  margin: 0 0 .75rem;
  color: rgba(255,255,255,.95);
  line-height: 1.45;
  text-wrap: balance;
}
.hero-text {
  max-width: 34rem;
  margin: 0 0 1.6rem;
  color: rgba(255,255,255,.74);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.hero-scroll i { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.elora-hero .owl-dots {
  position: absolute;
  bottom: 28px;
  inset-inline-end: 8%;
  left: auto;
  right: 8%;
  transform: none;
  z-index: 3;
  display: flex !important;
  gap: .35rem;
}
[dir="rtl"] .elora-hero .owl-dots {
  inset-inline-end: auto;
  inset-inline-start: 8%;
  left: 8%;
  right: auto;
}
.elora-hero .owl-dot span {
  width: 7px !important;
  height: 7px !important;
  background: rgba(255,255,255,.35) !important;
  transition: .3s ease;
}
.elora-hero .owl-dot.active span {
  width: 28px !important;
  border-radius: 999px !important;
  background: var(--brand) !important;
}
.elora-hero .owl-nav { display: none !important; }

/* Sections */
.elora-section { padding: 6rem 0; position: relative; background: #fff; }
.elora-section.alt {
  background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 48%, #fff 100%);
}
.section-head {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--rose-deep);
  background: var(--brand-soft);
  border: 1px solid #eadfcf;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .35rem .8rem;
  margin-bottom: .95rem;
  text-transform: none;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', 'Tajawal', serif;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 .85rem;
  text-wrap: balance;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.8;
  text-wrap: pretty;
}

/* Stats */
.stats-strip {
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
  padding: 0 0 1rem;
}
.stats-card {
  background: #fff;
  border: 1px solid #ebe4da;
  border-radius: 22px;
  padding: 1.4rem 1.1rem;
  box-shadow: 0 18px 50px rgba(199,168,129,.14);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .5rem;
}
.stat-item {
  text-align: center;
  padding: .75rem .5rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: #ebe4da;
}
.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', 'Tajawal', serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: .4rem;
  transition: transform .3s var(--ease);
}
.stats-card.is-in .stat-item strong {
  animation: pop-in .55s var(--ease) both;
}
.stat-item:nth-child(2) strong { animation-delay: .08s; }
.stat-item:nth-child(3) strong { animation-delay: .16s; }
.stat-item:nth-child(4) strong { animation-delay: .24s; }
.stat-item span {
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 600;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.about-copy .eyebrow {
  display: inline-flex;
  color: var(--rose-deep);
  background: var(--brand-soft);
  border: 1px solid #eadfcf;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
  padding: .35rem .8rem;
  margin-bottom: 1rem;
}
.about-copy h2 {
  font-family: 'Cormorant Garamond', 'Tajawal', serif;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}
.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 34rem;
  line-height: 1.85;
  text-wrap: pretty;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}
.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.about-media img:first-child { margin-top: 3rem; height: 420px; }
.about-media img:last-child { margin-bottom: 3rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ebe4da;
  border-radius: 22px;
  padding: 1.7rem 1.4rem 1.5rem;
  min-height: 240px;
  box-shadow: 0 10px 28px rgba(31,26,22,.03);
  transition: .4s var(--ease);
  text-align: start;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #d2b48c, #C7A881, transparent);
  transform: scaleX(0);
  transform-origin: inset-inline-start;
  transition: .45s var(--ease);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: #e0d2bf;
  box-shadow: 0 22px 44px rgba(199,168,129,.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--rose-deep);
  font-size: 1.15rem;
  margin: 0 0 1.15rem;
  margin-inline-end: auto;
  border: 1px solid #eadfcf;
  transition: .35s var(--ease);
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-6deg);
  background: linear-gradient(135deg, #C7A881, #a8875f);
  color: #fff;
  border-color: transparent;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', 'Tajawal', serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 .65rem;
  line-height: 1.4;
  text-align: start !important;
  width: 100%;
}
.service-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.75;
  text-align: start !important;
  width: 100%;
  margin: 0;
}
html[dir="rtl"] .service-card,
html[dir="rtl"] .service-card h3,
html[dir="rtl"] .service-card p {
  text-align: right !important;
}
html[dir="ltr"] .service-card,
html[dir="ltr"] .service-card h3,
html[dir="ltr"] .service-card p {
  text-align: left !important;
}

/* How work */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}
.step-card {
  text-align: center;
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem 1.1rem 1.5rem;
  border: 1px solid #ebe4da;
  position: relative;
  transition: .35s var(--ease);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(199,168,129,.16);
  border-color: #e0d2bf;
}
.step-num {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid #e0d2bf;
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 800;
  background: var(--brand-soft);
  transition: .3s ease;
}
.step-card:hover .step-num {
  background: linear-gradient(135deg, #C7A881, #a8875f);
  color: #fff;
  border-color: transparent;
}
.step-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin: 0 auto 1rem;
  transition: .35s var(--ease);
}
.step-card:hover img {
  transform: scale(1.06);
}
.step-card h4 {
  font-family: 'Cormorant Garamond', 'Tajawal', serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.45;
}

/* FAQ */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-bottom: 1.8rem;
}
.faq-tab {
  appearance: none;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 700;
  font-family: inherit;
  font-size: .95rem;
  padding: .55rem 1.15rem;
  cursor: pointer;
  transition: .25s var(--ease);
}
.faq-tab:hover {
  border-color: rgba(20,17,15,.28);
  color: var(--ink);
}
.faq-tab.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.faq-panel {
  display: none;
}
.faq-panel.is-active {
  display: block;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(20,17,15,.07);
  border-radius: 18px;
  margin-bottom: .7rem;
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.faq-item.is-open {
  border-color: #e0d2bf;
  box-shadow: 0 14px 32px rgba(199,168,129,.14);
  transform: translateY(-2px);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: start;
  background: transparent;
  border: 0;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.5;
  transition: color .2s ease;
}
.faq-item:hover .faq-question { color: var(--rose-deep); }
.faq-question i {
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--ink-soft);
  transition: transform .3s var(--ease), color .25s ease;
}
.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
  color: var(--rose);
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--ink-soft);
  text-align: start !important;
  direction: inherit;
  transition: max-height .35s var(--ease), opacity .28s ease, padding .28s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 280px;
  opacity: 1;
  padding: 0 1.25rem 1.2rem;
}
.faq-answer p {
  margin: 0;
  line-height: 1.8;
  text-align: start !important;
  width: 100%;
  display: block;
}
html[dir="rtl"] .faq-answer,
html[dir="rtl"] .faq-answer p {
  text-align: right !important;
}
html[dir="ltr"] .faq-answer,
html[dir="ltr"] .faq-answer p {
  text-align: left !important;
}
.faq-empty {
  text-align: center;
  color: var(--ink-soft);
  background: #fff;
  border: 1px dashed rgba(20,17,15,.12);
  border-radius: 18px;
  padding: 2rem 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

/* Partners */
.owl-brands {
  margin-top: .5rem;
}
.partner-item {
  background: linear-gradient(180deg, #fff 0%, #faf6f0 100%);
  border: 1px solid #e8dccb;
  border-radius: 18px;
  height: 120px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  transition: .3s ease;
}
.partner-item img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: .92;
  transition: .3s ease;
}
.partner-item:hover {
  border-color: var(--brand, #C7A881);
  box-shadow: 0 12px 28px rgba(199,168,129,.18);
  transform: translateY(-3px);
}
.partner-item:hover img {
  opacity: 1;
  transform: scale(1.04);
}

/* Download */
.download-band {
  border-radius: 28px;
  padding: 3rem 3.2rem;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(199,168,129,.32), transparent 55%),
    linear-gradient(135deg, #171412 0%, #2a221c 55%, #3a2e24 100%);
  color: #fff;
  display: grid;
  /* Physical order: phone left, copy right (Arabic CTA on the right) */
  direction: ltr;
  grid-template-columns: minmax(200px, .75fr) minmax(0, 1.25fr);
  grid-template-areas: "visual copy";
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 24px 60px rgba(31,26,22,.16);
}
.download-copy {
  grid-area: copy;
  direction: rtl;
  text-align: right;
  min-width: 0;
  max-width: none;
  justify-self: stretch;
}
.download-band h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 .85rem;
  letter-spacing: 0;
  text-align: right;
  text-wrap: balance;
}
.download-band p {
  opacity: .82;
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 32rem;
  margin-right: 0;
  margin-left: auto;
  text-align: right;
  text-wrap: pretty;
}
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-start; /* RTL start = right */
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff !important;
  border-radius: 14px;
  padding: .8rem 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  min-height: 54px;
}
.store-btn i { font-size: 1.25rem; }
.store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
}
.store-btn small {
  font-size: .68rem;
  font-weight: 500;
  opacity: .75;
}
.store-btn.is-soon span {
  display: block;
  font-size: .95rem;
}
.store-btn:hover { background: rgba(255,255,255,.16); }
.download-visual {
  grid-area: visual;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 260px;
  direction: ltr;
}
.download-phone {
  width: min(100%, 210px);
  aspect-ratio: 10 / 18;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
  animation: float-y 4.5s ease-in-out infinite;
}
.download-phone-screen {
  height: 100%;
  border-radius: 20px;
  background:
    radial-gradient(140px 100px at 50% 20%, rgba(212,191,163,.35), transparent 70%),
    linear-gradient(180deg, #2a221c 0%, #171412 100%);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.4rem 1rem;
  gap: .55rem;
}
.download-phone-screen strong {
  display: block;
  font-family: 'Cormorant Garamond', 'Tajawal', serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.download-phone-screen span {
  font-size: .85rem;
  opacity: .72;
  line-height: 1.6;
  max-width: 11rem;
}

/* Contact */
.contact-grid {
  display: grid !important;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: stretch;
  width: 100%;
}
.contact-side {
  background:
    radial-gradient(420px 240px at 100% 0%, rgba(199,168,129,.3), transparent 55%),
    linear-gradient(165deg, #1c1713 0%, #14110f 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2rem 1.8rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: start;
  overflow: hidden;
}
.contact-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .55rem;
}
.contact-side h3 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 .7rem;
  color: #fff;
}
.contact-side-text {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .95rem;
  line-height: 1.75;
}
.contact-list {
  display: block !important;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none !important;
}
.contact-list > li {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .85rem;
  width: 100%;
  margin: 0 0 .9rem;
  padding: 0;
  color: rgba(255,255,255,.86);
  list-style: none !important;
}
.contact-list > li:last-child { margin-bottom: 0; }
.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  display: grid !important;
  place-items: center;
  color: var(--gold);
}
.contact-list .contact-meta {
  flex: 0 1 auto;
  width: auto;
  max-width: calc(100% - 54px);
  min-width: 0;
  display: block;
  padding-top: .1rem;
}
.contact-list .contact-meta a[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  text-align: left;
}
.contact-list small {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: .15rem;
}
.contact-list strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  word-break: break-word;
}
.contact-list a {
  color: inherit;
  word-break: break-word;
}
.contact-list a:hover { color: var(--gold); }
.contact-socials {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  margin: .2rem 0 0;
  padding: 0;
  list-style: none !important;
}
.contact-socials > li {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
}
.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid !important;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.contact-socials a:hover {
  background: rgba(255,255,255,.12);
  color: var(--gold);
}
.contact-form {
  background: #fff;
  border: 1px solid #ebe4da;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form .form-control {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(20,17,15,.1);
  min-height: 52px;
  padding: .9rem 1.05rem;
  margin-bottom: .95rem;
  background: #fcfbf9;
  box-shadow: none !important;
}
.contact-form .form-control:focus {
  border-color: rgba(199,168,129,.55);
  background: #fff;
}
.contact-form input[dir="ltr"] {
  direction: ltr !important;
  text-align: left !important;
}
/* Arabic placeholders stay on the right; typed phone/email stay LTR */
html[dir="rtl"] .contact-form input[dir="ltr"]:placeholder-shown {
  text-align: right !important;
  direction: rtl !important;
}
html[dir="rtl"] .contact-form input[dir="ltr"]:not(:placeholder-shown),
html[dir="rtl"] .contact-form input[dir="ltr"]:focus {
  text-align: left !important;
  direction: ltr !important;
}
html[dir="rtl"] .contact-form input[dir="ltr"]::placeholder {
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}
html[dir="ltr"] .contact-form input[dir="ltr"]::placeholder {
  direction: ltr;
  text-align: left;
}
html[dir="rtl"] .contact-form input:not([dir="ltr"]),
html[dir="rtl"] .contact-form textarea {
  text-align: right;
  direction: rtl;
}
.contact-form textarea.form-control { min-height: 150px; }
.contact-form .btn-elora {
  width: 100%;
  justify-content: center;
  background: var(--brand) !important;
  color: #fff !important;
}

/* Footer */
.elora-footer {
  background: #0f0d0c;
  color: rgba(255,255,255,.72);
  padding: 4rem 0 0;
  overflow: hidden;
}
.elora-footer .container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: 1.25fr 1fr 1fr;
  column-gap: 3rem;
  row-gap: 2rem;
  align-items: start;
  justify-items: stretch;
  width: 100%;
}
.footer-brand,
.footer-col {
  min-width: 0;
  width: 100%;
  text-align: start;
}
.footer-title {
  display: block;
  margin: 0 0 1.15rem;
  padding: 0;
  color: #fff;
  font-family: 'Tajawal', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: start;
}
.footer-brand p {
  margin: 0 0 1.2rem;
  max-width: 34ch;
  font-size: .92rem;
  line-height: 1.85;
  color: rgba(255,255,255,.58);
  text-align: start;
}
.footer-socials {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none !important;
}
.footer-socials > li {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid !important;
  place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  transition: .25s ease;
}
.footer-socials a:hover {
  background: rgba(255,255,255,.12);
  color: var(--gold);
}
.footer-links,
.footer-contact,
.footer-legal {
  margin: 0;
  padding: 0;
  list-style: none !important;
  text-align: start;
}
.footer-links li,
.footer-contact li,
.footer-legal li {
  list-style: none !important;
  margin: 0 0 .72rem;
  padding: 0;
  text-align: start;
}
.footer-links li:last-child,
.footer-contact li:last-child,
.footer-legal li:last-child { margin-bottom: 0; }
.footer-links a {
  display: inline-block;
  color: rgba(255,255,255,.62);
  font-size: .94rem;
  line-height: 1.5;
  transition: .2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact li {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .7rem;
  width: auto;
  max-width: 100%;
  color: rgba(255,255,255,.68);
  font-size: .94rem;
  line-height: 1.6;
}
.footer-contact i {
  width: 18px;
  flex: 0 0 18px;
  margin-top: .2rem;
  color: var(--gold);
  text-align: center;
  font-size: .9rem;
}
.footer-contact span,
.footer-contact a {
  flex: 0 1 auto;
  width: auto !important;
  max-width: calc(100% - 28px);
  color: inherit;
  word-break: break-word;
  text-align: start;
}
.footer-contact a[dir="ltr"],
.footer-contact span[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}
.footer-contact a:hover { color: var(--gold); }
.footer-legal {
  margin-top: 1.2rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.under_footer {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0 1.3rem;
  font-size: .88rem;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1.5rem;
  color: rgba(255,255,255,.5);
  text-align: start;
}
.under_footer p { margin: 0; }
.under_footer a { color: rgba(255,255,255,.72); }
.under_footer a:hover { color: var(--gold); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0f0d0c;
  display: grid;
  place-items: center;
}
.loader img { width: 88px; height: 88px; object-fit: contain; filter: brightness(1.1); }

.elora-inner {
  padding: 8.5rem 0 4.5rem;
  background: var(--paper);
}
.elora-inner .content-card {
  background: #fff;
  border-radius: 28px;
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

@media (max-width: 991px) {
  .nav-cta { display: none; }
  .elora-header-brand { gap: .5rem; }
  .menu-toggle { display: grid; }
  .elora-nav {
    position: absolute;
    top: calc(100% + .55rem);
    inset-inline: 1rem;
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .elora-nav.active { display: flex; }
  .elora-nav a { color: var(--ink) !important; padding: .6rem .15rem; }
  .about-grid,
  .download-band,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .download-band {
    grid-template-areas:
      "visual"
      "copy" !important;
    text-align: right;
  }
  .download-copy {
    max-width: none;
    text-align: right;
  }
  .download-visual {
    min-height: 0;
    justify-content: center;
  }
  .download-phone { width: min(100%, 180px); }
  .footer-brand p { max-width: none; }
  .under_footer { flex-direction: column; align-items: flex-start; }
  .stats-card,
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .about-media img,
  .about-media img:first-child,
  .about-media img:last-child {
    margin: 0;
    height: 240px;
  }
  .elora-hero .owl-carousel,
  .elora-hero .owl-stage-outer,
  .elora-hero .owl-stage,
  .elora-hero .owl-item,
  .elora-hero .item,
  .hero-slide {
    height: 88vh;
    min-height: 560px;
  }
  .hero-content { padding-bottom: 14vh; }
  .stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 575px) {
  .stats-card,
  .services-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .download-band { padding: 2rem 1.4rem; }
  .hero-brand { letter-spacing: .04em; }
}
