@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap");

:root {
  --oak-ink: #0b1d3a;
  --oak-panel: #f7f5f0;
  --oak-card: rgba(255, 255, 255, 0.78);
  --oak-line: rgba(11, 29, 58, 0.11);
  --oak-muted: rgba(11, 29, 58, 0.62);
  --oak-soft: rgba(11, 29, 58, 0.76);
  --oak-white: #0b1d3a;
  --oak-ivory: #fbfaf6;
  --oak-cream: #f3eee4;
  --oak-sand: #e9dfcc;
  --oak-gold: #c9a84c;
  --oak-gold-soft: rgba(201, 168, 76, 0.18);
  --oak-danger: #f0a4a4;
  --oak-shadow: 0 18px 42px rgba(11, 29, 58, 0.08);
  --font-heading: "Baskervville", serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(201, 168, 76, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 3%, rgba(11, 29, 58, 0.06), transparent 24rem),
    linear-gradient(180deg, #fbfaf6 0%, #f4efe5 48%, #ece3d4 100%);
  color: var(--oak-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.brand-inline {
  color: var(--oak-gold);
  font-weight: 700;
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}

.language-switcher {
  position: fixed;
  left: 16px;
  bottom: 92px;
  z-index: 42;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(11, 29, 58, 0.14);
}

.language-switcher button {
  min-width: 48px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(11, 29, 58, 0.68);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--oak-gold);
  color: var(--oak-ink);
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  border-bottom: 1px solid rgba(11, 29, 58, 0.08);
  background: rgba(251, 250, 246, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 132px;
  max-height: 54px;
  object-fit: contain;
}

.brand span {
  display: none;
  color: rgba(11, 29, 58, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: rgba(11, 29, 58, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--oak-ink);
  outline: none;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.85rem;
}

.nav-phone {
  color: rgba(11, 29, 58, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mobile-menu-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--oak-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--oak-ink);
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 35;
  display: none;
  border-bottom: 1px solid var(--oak-line);
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  border-top: 1px solid rgba(11, 29, 58, 0.08);
  padding: 1rem 1.2rem;
  color: rgba(11, 29, 58, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(820px, calc(92svh - 20px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  opacity: 0.86;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider .hero-bg {
  opacity: 0;
}

.hero-slide {
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6200ms ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 0.86;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(120deg, rgba(13, 20, 24, 0.72), rgba(53, 43, 28, 0.46) 48%, rgba(251, 250, 246, 0.16)),
    linear-gradient(to top, rgba(251, 250, 246, 0.88), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem 0 4.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  color: var(--oak-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 9vw, 7.5rem);
  line-height: 0.94;
}

h1 span,
.gold-text {
  color: var(--oak-gold);
}

.hero p {
  max-width: 560px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
}

.stat-grid,
.details-grid,
.trust-grid,
.feature-grid,
.highlight-grid,
.why-grid,
.compliance-grid {
  display: grid;
  gap: 1rem;
}

.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.glass-card,
.stat,
.detail,
.trust-card,
.feature-card,
.highlight-card,
.why-card,
.compliance-card,
.about-panel,
.location-panel,
.form-panel,
.faq-card,
.footer-panel {
  border: 1px solid var(--oak-line);
  background: var(--oak-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--oak-shadow);
}

.stat,
.detail,
.trust-card,
.feature-card,
.highlight-card,
.why-card,
.compliance-card {
  border-radius: 24px;
  padding: 1.25rem;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
}

.stat span,
.detail span,
.trust-card span,
.feature-card span,
.highlight-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--oak-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.highlight-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(201, 168, 76, 0.13), transparent),
    rgba(255, 255, 255, 0.82);
}

.highlight-card span {
  margin-top: 0;
}

.highlight-card strong {
  display: block;
  margin-top: 1.1rem;
  color: var(--oak-white);
  font-family: var(--font-heading);
  font-size: clamp(1.42rem, 3vw, 2.15rem);
  line-height: 1;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  border: 1px solid rgba(201, 168, 76, 0.55);
  background: #c9a84c;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(201, 168, 76, 0.22);
}

.btn-primary:hover {
  background: #b9953d;
  border-color: rgba(185, 149, 61, 0.72);
}

.btn-ghost {
  border: 1px solid rgba(11, 29, 58, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: rgba(11, 29, 58, 0.86);
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero h1,
.hero .eyebrow {
  color: #ffffff;
}

.hero .eyebrow::before {
  background: rgba(255, 255, 255, 0.74);
}

.section {
  padding: 3.4rem 0;
}

.section-kicker {
  max-width: 760px;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: 1;
}

.section-copy {
  max-width: 720px;
  color: var(--oak-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-panel {
  border-radius: 32px;
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.76);
}

.about-panel .section-copy {
  margin-bottom: 0;
}

.about-us-panel .cta-row {
  margin-top: 1rem;
}

.unit-cards-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
  grid-template-columns: minmax(0, 1fr);
}

.unit-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 26px;
  padding: 1.1rem 1.15rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 168, 76, 0.18), transparent 11rem),
    linear-gradient(165deg, rgba(11, 29, 58, 0.96), rgba(11, 29, 58, 0.88));
  box-shadow: 0 20px 40px rgba(11, 29, 58, 0.12);
}

.unit-card-title {
  display: block;
  color: #fbfaf6;
  font-family: var(--font-heading);
  font-size: 1.42rem;
  line-height: 1.15;
}

.unit-card-rows {
  display: grid;
  gap: 0.55rem;
}

.unit-card-row {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(251, 250, 246, 0.12);
}

.unit-card-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.unit-card-label {
  color: rgba(251, 250, 246, 0.58);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.unit-card-value {
  color: #fbfaf6;
  font-size: 1rem;
  line-height: 1.5;
}

.unit-card-row--price .unit-card-value {
  color: #f2d58c;
  font-weight: 700;
}

.unit-card-row--accent .unit-card-value {
  color: rgba(251, 250, 246, 0.88);
}

.unit-cards-note {
  margin: 0.9rem 0 0;
  color: rgba(11, 29, 58, 0.52);
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 760px;
}

@media (min-width: 720px) {
  .unit-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .unit-cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.details {
  position: relative;
  z-index: 3;
  margin-top: -2rem;
}

.details-shell {
  border-radius: 32px;
  padding: 1.35rem;
}

.detail strong {
  display: block;
  color: var(--oak-gold);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.detail p {
  margin: 0.5rem 0 0;
  color: rgba(11, 29, 58, 0.82);
  line-height: 1.55;
}

.detail.is-wide {
  grid-column: 1 / -1;
}

.trust-grid {
  grid-template-columns: 1fr;
}

.trust-card strong,
.feature-card strong {
  display: block;
  color: var(--oak-white);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.18;
}

.trust-card p,
.feature-card p {
  margin: 0.75rem 0 0;
  color: var(--oak-muted);
  line-height: 1.7;
}

.gallery-header {
  margin-bottom: 1.8rem;
}

.gallery-section {
  padding-top: 2.4rem;
}

.gallery {
  overflow: hidden;
  border-radius: 32px;
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  width: 100%;
  transition: transform 480ms ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.gallery-image {
  min-height: 420px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.gallery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 20, 24, 0.72), rgba(13, 20, 24, 0.08) 56%);
}

.gallery-caption {
  position: absolute;
  inset: auto 1.4rem 1.4rem;
  z-index: 2;
}

.gallery-caption span {
  display: block;
  color: var(--oak-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-caption strong {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #ffffff;
}

.gallery-caption span {
  color: #f7dc8a;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-dots,
.gallery-arrows {
  display: flex;
  gap: 0.55rem;
}

.gallery-dot,
.gallery-arrow {
  cursor: pointer;
  border: 1px solid var(--oak-line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--oak-white);
}

.gallery-dot {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  padding: 0;
}

.gallery-dot.is-active {
  background: var(--oak-gold);
}

.gallery-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.feature-grid {
  margin-top: 1.8rem;
}

.why-grid,
.compliance-grid {
  margin-top: 1.5rem;
}

.why-card strong,
.compliance-card strong {
  display: block;
  color: var(--oak-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.15;
}

.why-card p,
.compliance-card p {
  margin: 0.7rem 0 0;
  color: var(--oak-muted);
  line-height: 1.58;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.faq-card {
  border-radius: 24px;
  padding: 1.25rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.34);
}

.faq-card strong {
  display: block;
  color: var(--oak-white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.18;
}

.faq-card p {
  margin: 0.7rem 0 0;
  color: var(--oak-muted);
  line-height: 1.6;
}

.location-panel {
  border-radius: 32px;
  padding: 1.5rem;
  display: grid;
  gap: 1.4rem;
}

.location-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.location-list li {
  position: relative;
  border: 1px solid rgba(11, 29, 58, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(11, 29, 58, 0.72);
  padding: 0.85rem 1rem 0.85rem 2.2rem;
  line-height: 1.5;
}

.location-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.38rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--oak-gold);
}

.permit-note {
  margin: 1rem 0 0;
  color: rgba(11, 29, 58, 0.52);
  font-size: 0.78rem;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.form-panel {
  border-radius: 28px;
  padding: 1rem;
}

.form-panel .btn {
  width: 100%;
  margin-top: 0.9rem;
}

.form-intro {
  border-radius: 28px;
  padding: 1.4rem;
  background:
    linear-gradient(145deg, rgba(201, 168, 76, 0.15), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.72);
}

.compact-intro .section-title {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

.compact-intro .section-copy {
  margin-bottom: 1rem;
}

.mini-compliance {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.mini-compliance span {
  border: 1px solid rgba(11, 29, 58, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(11, 29, 58, 0.72);
  padding: 0.72rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-intro ul {
  margin: 1.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--oak-muted);
  line-height: 1.8;
}

.field-grid {
  display: grid;
  gap: 0.8rem;
}

.field {
  margin-bottom: 0.75rem;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(11, 29, 58, 0.64);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(11, 29, 58, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(11, 29, 58, 0.88);
  min-height: 48px;
  padding: 0.82rem 0.9rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.phone-input-row {
  display: grid;
  gap: 0.6rem;
  align-items: start;
  grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1fr);
}

.country-picker {
  position: relative;
}

.country-picker-trigger {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(11, 29, 58, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(11, 29, 58, 0.88);
  padding: 0.82rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.country-picker-current {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.country-picker-flag,
.country-picker-code,
.country-picker-chevron {
  flex: 0 0 auto;
}

.country-picker-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-picker-code,
.country-picker-chevron {
  color: rgba(11, 29, 58, 0.6);
}

.country-picker.is-open .country-picker-trigger,
.country-picker-trigger:focus-visible {
  border-color: rgba(201, 168, 76, 0.62);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
  outline: none;
}

.country-picker-panel {
  position: absolute;
  top: calc(100% + 0.42rem);
  left: 0;
  z-index: 20;
  width: min(380px, 92vw);
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(11, 29, 58, 0.14);
  padding: 0.75rem;
}

.country-picker-search {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-radius: 14px;
  background: rgba(247, 243, 236, 0.88);
  color: rgba(11, 29, 58, 0.92);
  padding: 0.78rem 0.9rem;
  margin-bottom: 0.65rem;
}

.country-picker-search::placeholder {
  color: rgba(11, 29, 58, 0.45);
}

.country-picker-search:focus {
  border-color: rgba(201, 168, 76, 0.62);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
  outline: none;
}

.country-picker-list {
  display: grid;
  gap: 0.28rem;
  max-height: 260px;
  overflow: auto;
  padding-right: 0.15rem;
}

.country-picker-option {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--oak-ink);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  text-align: left;
}

.country-picker-option[hidden] {
  display: none;
}

.country-picker-option:hover,
.country-picker-option:focus-visible {
  background: rgba(201, 168, 76, 0.12);
  outline: none;
}

.country-picker-option.is-selected {
  background: rgba(201, 168, 76, 0.18);
}

.country-picker-option-label {
  min-width: 0;
}

.country-picker-option-code {
  color: rgba(11, 29, 58, 0.62);
}

.country-picker-empty {
  margin: 0;
  color: rgba(11, 29, 58, 0.58);
  font-size: 0.88rem;
  line-height: 1.5;
}

.field input:focus,
.field select:focus {
  border-color: rgba(201, 168, 76, 0.62);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.field select option {
  color: #071317;
}

.field.has-error input,
.field.has-error select {
  border-color: var(--oak-danger);
}

.field.has-error .country-picker-trigger {
  border-color: var(--oak-danger);
}

.field.has-error .country-picker-search {
  border-color: rgba(11, 29, 58, 0.12);
  box-shadow: none;
}

.field-error {
  display: none;
  margin-top: 0.45rem;
  color: var(--oak-danger);
  font-size: 0.78rem;
}

.field.has-error .field-error {
  display: block;
}

.form-error {
  display: none;
  margin-top: 1rem;
  border: 1px solid rgba(240, 164, 164, 0.28);
  border-radius: 18px;
  background: rgba(240, 164, 164, 0.1);
  color: #ffd0d0;
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  font-size: 3rem;
}

.disclaimer {
  margin: 0.55rem 0 0;
  color: rgba(11, 29, 58, 0.54);
  font-size: 0.72rem;
  line-height: 1.55;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer-panel {
  border-radius: 28px;
  padding: 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-panel strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--oak-gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-panel p,
.footer-panel a {
  color: rgba(11, 29, 58, 0.62);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.9rem;
}

.copyright {
  margin-top: 1.2rem;
  color: rgba(11, 29, 58, 0.44);
  font-size: 0.82rem;
}

.mobile-contact-bar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  width: min(430px, calc(100% - 28px));
  min-height: 60px;
  padding: 0.45rem;
  transform: translateX(-50%);
  border: 1px solid rgba(11, 29, 58, 0.1);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(11, 29, 58, 0.16);
}

.mobile-contact-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--oak-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(11, 29, 58, 0.06);
}

.mobile-contact-bar a:last-child {
  border-color: rgba(201, 168, 76, 0.44);
  background: rgba(201, 168, 76, 0.88);
  color: #ffffff;
}

@media (min-width: 700px) {
  .brand span {
    display: block;
  }

  .cta-row {
    flex-direction: row;
  }

  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .details-grid,
  .feature-grid,
  .why-grid,
  .compliance-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field.is-phone {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  .nav-links,
  .nav-actions {
    display: flex;
  }

  .mobile-menu-button {
    display: none;
  }

  .hero {
    align-items: center;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: stretch;
  }

  .gallery-image {
    min-height: 650px;
  }

  .location-panel {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    padding: 2rem;
  }

  .mobile-contact-bar {
    display: none;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 24px, 100%);
  }

  .brand img {
    width: 104px;
  }

  .hero-content {
    padding: 3.4rem 0 2.4rem;
  }

  h1 {
    font-size: 3rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid,
  .why-grid,
  .compliance-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .details-shell,
  .form-panel,
  .form-intro,
  .about-panel {
    border-radius: 24px;
  }

  .section {
    padding: 2.8rem 0;
  }

  .section-title {
    font-size: 2.45rem;
  }

  .gallery-image {
    min-height: 360px;
  }

  .gallery-controls {
    align-items: center;
  }

  .phone-input-row {
    grid-template-columns: 1fr;
  }

  .mobile-contact-bar {
    bottom: 12px;
    width: calc(100% - 24px);
    min-height: 58px;
  }

  body {
    padding-bottom: 86px;
  }
}

/* Sobha City design system: Oaklyn light identity, ivory surfaces, gold accents, premium editorial spacing. */
:root {
  --ink: #0b1d3a;
  --panel: #f7f3ec;
  --slate: #dfe7ea;
  --steel: #6e7c88;
  --cloud: #fbfaf6;
  --mist: rgba(11, 29, 58, 0.76);
  --muted: rgba(11, 29, 58, 0.62);
  --muted-soft: rgba(11, 29, 58, 0.44);
  --line: rgba(11, 29, 58, 0.11);
  --line-soft: rgba(11, 29, 58, 0.07);
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.18);
  --gold-light: #ead28a;
  --gold-deep: #9a6b29;
  --success: #5a9a73;
  --danger: #d47f7f;

  --oak-ink: var(--ink);
  --oak-panel: var(--panel);
  --oak-card: rgba(255, 255, 255, 0.8);
  --oak-line: var(--line);
  --oak-muted: var(--muted);
  --oak-soft: var(--mist);
  --oak-white: var(--ink);
  --oak-ivory: var(--cloud);
  --oak-cream: #f2ebe0;
  --oak-sand: #e8dfd1;
  --oak-gold: var(--gold);
  --oak-gold-soft: var(--gold-soft);
  --oak-danger: var(--danger);
  --oak-shadow: 0 24px 68px rgba(11, 29, 58, 0.1);
}

body {
  background:
    radial-gradient(circle at 14% 0%, rgba(201, 168, 76, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 0%, rgba(11, 29, 58, 0.05), transparent 24rem),
    linear-gradient(180deg, #fbfaf6 0%, #f4efe5 52%, #ece3d4 100%);
  color: var(--oak-white);
}

.topbar {
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 16px 42px rgba(11, 29, 58, 0.06);
}

.brand span,
.nav-phone,
.nav-links a {
  color: rgba(11, 29, 58, 0.68);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-deep);
}

.mobile-menu-button,
.mobile-menu {
  background: rgba(251, 250, 246, 0.94);
  border-color: var(--line);
  color: var(--oak-white);
}

.mobile-menu a {
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.hero {
  min-height: min(840px, calc(94svh - 20px));
}

.hero-shade {
  background:
    linear-gradient(108deg, rgba(11, 29, 58, 0.5), rgba(154, 107, 41, 0.24) 46%, rgba(251, 250, 246, 0.22)),
    linear-gradient(to top, rgba(251, 250, 246, 0.92), transparent 52%);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
}

.section-copy {
  color: var(--muted);
}

.glass-card,
.stat,
.detail,
.trust-card,
.feature-card,
.highlight-card,
.why-card,
.compliance-card,
.about-panel,
.location-panel,
.form-panel,
.faq-card,
.footer-panel,
.form-intro {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--oak-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-panel,
.location-panel,
.form-intro {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(223, 230, 212, 0.34)),
    rgba(255, 255, 255, 0.8);
}

.highlight-card {
  background:
    linear-gradient(145deg, rgba(201, 168, 76, 0.16), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.82);
}

.highlight-card strong,
.trust-card strong,
.feature-card strong,
.why-card strong,
.compliance-card strong,
.faq-card strong {
  color: var(--oak-white);
}

.stat span,
.detail span,
.trust-card span,
.feature-card span,
.highlight-card span,
.trust-card p,
.feature-card p,
.why-card p,
.compliance-card p,
.faq-card p,
.footer-panel p,
.footer-panel a,
.disclaimer,
.copyright,
.permit-note {
  color: var(--muted);
}

.detail p,
.location-list li,
.mini-compliance span {
  color: var(--mist);
}

.location-list li,
.mini-compliance span {
  border-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.68);
}

.field label {
  color: var(--muted);
}

.field input,
.field select {
  background: rgba(251, 250, 246, 0.84);
  border: 1px solid rgba(11, 29, 58, 0.14);
  color: var(--mist);
}

.field input:focus,
.field select:focus {
  border-color: rgba(201, 168, 76, 0.58);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #d3b75f, #b7933f);
  border: 1px solid rgba(201, 168, 76, 0.48);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(154, 107, 41, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d8bf72, #9a6b29);
  border-color: rgba(201, 168, 76, 0.68);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(11, 29, 58, 0.16);
  color: rgba(11, 29, 58, 0.86);
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: rgba(255, 255, 255, 0.94);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(11, 29, 58, 0.26);
}

.gallery-dot,
.gallery-arrow {
  border-color: rgba(11, 29, 58, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--oak-white);
}

.gallery-dot.is-active {
  background: var(--gold);
}

.mobile-contact-bar {
  background: rgba(251, 250, 246, 0.84);
  border-color: rgba(11, 29, 58, 0.1);
}

.mobile-contact-bar a {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(11, 29, 58, 0.08);
  color: var(--oak-white);
}

.mobile-contact-bar a:last-child {
  background: linear-gradient(135deg, #d3b75f, #b7933f);
  border-color: rgba(201, 168, 76, 0.42);
  color: #ffffff;
}

body.modal-open {
  overflow: hidden;
}

.whatsapp-float-wrap {
  position: fixed;
  right: 18px;
  bottom: 94px;
  z-index: 46;
}

.whatsapp-float {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #29b063, #1f8e4f);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 142, 79, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.whatsapp-float .bx {
  font-size: 30px;
  line-height: 1;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.whatsapp-modal.is-visible {
  display: block;
}

.whatsapp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 58, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.whatsapp-modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 28px));
  margin: min(9vh, 72px) auto 0;
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(251, 250, 246, 0.96);
  border: 1px solid rgba(11, 29, 58, 0.1);
  box-shadow: 0 28px 80px rgba(11, 29, 58, 0.24);
}

.whatsapp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 29, 58, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--oak-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.whatsapp-modal-dialog h3 {
  margin: 0.3rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.whatsapp-modal-phone-row {
  margin-top: 1rem;
}

.whatsapp-modal .country-picker {
  width: 100%;
}

.whatsapp-modal .country-picker-trigger {
  min-height: 58px;
}

.whatsapp-modal .country-picker-panel {
  z-index: 70;
  width: min(420px, calc(100vw - 48px));
}

.whatsapp-modal .country-picker-search {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f0e8;
}

.whatsapp-modal-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.whatsapp-modal-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.whatsapp-modal-actions .btn {
  width: 100%;
}

.whatsapp-modal .form-error,
.whatsapp-modal .form-success {
  margin-top: 0.9rem;
}

@media (min-width: 980px) {
  .whatsapp-float-wrap {
    right: 22px;
    bottom: 24px;
  }
}

@media (max-width: 520px) {
  .whatsapp-float-wrap {
    right: 14px;
    bottom: 86px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }

  .whatsapp-modal-dialog {
    width: calc(100% - 20px);
    margin-top: 12px;
    padding: 1rem;
  }

  .whatsapp-modal-close {
    top: 12px;
    right: 12px;
  }
}

body.link-hub-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.16), transparent 18rem),
    radial-gradient(circle at 100% 18%, rgba(11, 29, 58, 0.05), transparent 18rem),
    linear-gradient(180deg, #fbfaf6 0%, #f5efe5 52%, #efe3d1 100%);
}

.link-hub {
  padding: 1.1rem 0 3rem;
}

.link-hub-shell {
  width: min(760px, calc(100% - 22px));
  margin: 0 auto;
}

.link-hub-profile {
  padding: 0.2rem 0 0.95rem;
}

.link-hub-profile-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 46px rgba(11, 29, 58, 0.08);
}

.link-hub-profile-cover,
.link-hub-profile-overlay {
  position: absolute;
  inset: 0;
}

.link-hub-profile-cover {
  background-position: center;
  background-size: cover;
  opacity: 0.24;
}

.link-hub-profile-overlay {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.26) 0%, rgba(251, 250, 246, 0.88) 44%, rgba(251, 250, 246, 0.98) 100%);
}

.link-hub-profile-body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.2rem 1rem 1.1rem;
}

.link-hub-profile .eyebrow {
  justify-content: center;
  margin-bottom: 0.45rem;
}

.link-hub-mark {
  width: min(206px, 74vw);
  min-height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 29, 58, 0.08);
  box-shadow: 0 18px 32px rgba(11, 29, 58, 0.08);
}

.link-hub-mark img {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.link-hub-handle {
  color: var(--oak-ink);
  font-size: clamp(1.02rem, 4.4vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.link-hub-profile h1 {
  margin-top: 0.2rem;
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  line-height: 0.96;
}

.link-hub-subtitle,
.link-hub-note {
  width: min(560px, 100%);
  margin: 0 auto;
}

.link-hub-subtitle {
  margin-top: 0.68rem;
  color: rgba(11, 29, 58, 0.76);
  font-size: clamp(0.91rem, 3.2vw, 1rem);
  line-height: 1.58;
}

.link-hub-note {
  margin-top: 0.55rem;
  color: rgba(11, 29, 58, 0.52);
  font-size: 0.8rem;
  line-height: 1.55;
}

.link-hub-jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.link-hub-jump-chip {
  min-height: 34px;
  padding: 0 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 29, 58, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(11, 29, 58, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 34px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.link-hub-jump-chip:hover,
.link-hub-jump-chip:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(201, 168, 76, 0.28);
  color: var(--oak-ink);
  transform: translateY(-1px);
  outline: none;
}

.link-hub-stack {
  display: grid;
  gap: 0.9rem;
}

.link-hub-group {
  display: block;
  scroll-margin-top: 1rem;
}

.link-hub-group-panel {
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: 26px;
  padding: 0.9rem;
  background:
    linear-gradient(145deg, rgba(201, 168, 76, 0.1), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(11, 29, 58, 0.06);
}

.link-hub-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.72rem;
}

.link-hub-group-title {
  color: rgba(11, 29, 58, 0.56);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.link-hub-group-count {
  color: rgba(11, 29, 58, 0.46);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-hub-card-stack {
  display: grid;
  gap: 0.65rem;
}

.link-hub-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 0.78rem;
  align-items: center;
  padding: 0.82rem 0.92rem;
  border-radius: 20px;
  border: 1px solid rgba(11, 29, 58, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 26px rgba(11, 29, 58, 0.05);
}

.link-hub-card.has-image {
  grid-template-columns: 72px minmax(0, 1fr) auto;
}

.link-hub-card:not(.is-placeholder) {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-hub-card:not(.is-placeholder):hover,
.link-hub-card:not(.is-placeholder):focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 40px rgba(11, 29, 58, 0.09);
  outline: none;
}

.link-hub-card.is-placeholder {
  opacity: 0.94;
  border-style: dashed;
}

.link-hub-card-media {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(11, 29, 58, 0.07);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.link-hub-card.has-image .link-hub-card-media {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.link-hub-card-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.link-hub-card-media.is-image {
  background: #e8dcc9;
}

.link-hub-card-media.is-image img {
  object-fit: cover;
}

.link-hub-card-media.is-logo {
  padding: 0.35rem;
}

.link-hub-card-media.is-logo img {
  object-fit: contain;
}

.link-hub-card-media.is-favicon img {
  width: 26px;
  height: 26px;
}

.link-hub-card-media.is-icon {
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.18), rgba(255, 255, 255, 0.98));
  color: #9d7f33;
  font-size: 1.28rem;
}

.link-hub-card-media.is-avatar {
  background: linear-gradient(145deg, #0b1d3a, #1f3560);
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.link-hub-card-copy {
  display: grid;
  min-width: 0;
}

.link-hub-card-copy strong {
  color: var(--oak-ink);
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.3;
}

.link-hub-card-copy small {
  margin-top: 0.15rem;
  color: rgba(11, 29, 58, 0.56);
  font-size: 0.78rem;
  line-height: 1.42;
}

.link-hub-card-badge {
  min-height: 24px;
  padding: 0 0.58rem;
  border-radius: 999px;
  background: rgba(11, 29, 58, 0.08);
  color: rgba(11, 29, 58, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.link-hub-card.is-contact .link-hub-card-badge {
  background: rgba(201, 168, 76, 0.16);
  color: #8f722c;
}

.link-hub-card-badge.is-pending {
  background: rgba(201, 168, 76, 0.18);
  color: #8f722c;
}

.link-hub-card-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(11, 29, 58, 0.06);
  color: rgba(11, 29, 58, 0.34);
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .link-hub {
    padding: 1.6rem 0 3.8rem;
  }

  .link-hub-profile-body {
    padding: 1.45rem 1.5rem 1.25rem;
  }

  .link-hub-card {
    padding: 0.84rem 0.95rem;
  }
}

@media (min-width: 920px) {
  .link-hub-shell {
    width: min(1040px, calc(100% - 36px));
  }

  .link-hub-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .link-hub-group--wide {
    grid-column: 1 / -1;
  }

  .link-hub-group--wide .link-hub-card-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .link-hub-group--compact .link-hub-card-stack {
    gap: 0.75rem;
  }
}

.is-rtl {
  direction: rtl;
}

.is-rtl .nav,
.is-rtl .nav-links,
.is-rtl .nav-actions,
.is-rtl .footer-links,
.is-rtl .mobile-contact-bar,
.is-rtl .cta-row {
  flex-direction: row-reverse;
}

.is-rtl .brand,
.is-rtl .eyebrow,
.is-rtl .section-kicker,
.is-rtl .gallery-header,
.is-rtl .hero-content,
.is-rtl .about-panel,
.is-rtl .location-panel,
.is-rtl .form-intro,
.is-rtl .form-panel,
.is-rtl .footer-panel,
.is-rtl .faq-card,
.is-rtl .why-card,
.is-rtl .compliance-card,
.is-rtl .highlight-card {
  text-align: right;
}

.is-rtl .eyebrow {
  flex-direction: row-reverse;
}

.is-rtl .country-picker-trigger,
.is-rtl #landing_phone,
.is-rtl #landing_email,
.is-rtl #whatsappModalCountryCode,
.is-rtl #whatsappModalPhone {
  direction: ltr;
  text-align: left;
}

.is-rtl .gallery-arrows {
  flex-direction: row-reverse;
}

.is-rtl .whatsapp-modal-close {
  right: auto;
  left: 16px;
}

@media (max-width: 520px) {
  .is-rtl .whatsapp-modal-close {
    left: 12px;
  }
}

/* Apple / Linear inspired dark premium redesign */
:root {
  --oak-ink: #f5f5f7;
  --oak-panel: #050505;
  --oak-card: rgba(255, 255, 255, 0.07);
  --oak-line: rgba(255, 255, 255, 0.1);
  --oak-muted: #a1a1a6;
  --oak-soft: rgba(245, 245, 247, 0.78);
  --oak-white: #f5f5f7;
  --oak-ivory: #050505;
  --oak-cream: #0a0a0a;
  --oak-sand: rgba(255, 255, 255, 0.08);
  --oak-gold: #8b5cf6;
  --oak-gold-soft: rgba(139, 92, 246, 0.18);
  --oak-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --accent-a: #8b5cf6;
  --accent-b: #2563eb;
  --accent-c: #06b6d4;
  --font-heading: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

html {
  background: #050505;
}

body {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 6%, rgba(139, 92, 246, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(6, 182, 212, 0.14), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #09090b 48%, #050505 100%);
  color: #f5f5f7;
  font-family: var(--font-body);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.34;
}

body::before {
  top: -10rem;
  left: -10rem;
  background: #6d5dfc;
}

body::after {
  right: -12rem;
  bottom: 10rem;
  background: #06b6d4;
  opacity: 0.22;
}

body.language-modal-open {
  overflow: hidden;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand span,
.nav-links a,
.nav-phone {
  color: rgba(245, 245, 247, 0.72);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.btn {
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, var(--accent-a), var(--accent-b) 52%, var(--accent-c));
  color: #ffffff;
  box-shadow:
    0 18px 50px rgba(37, 99, 235, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 24px 70px rgba(37, 99, 235, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f7;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero {
  min-height: calc(100svh - 76px);
  align-items: center;
  padding: 9rem 0 7rem;
}

.hero-bg {
  opacity: 0.28;
  filter: saturate(1.05) contrast(1.05);
}

.hero-shade {
  background:
    radial-gradient(circle at 28% 40%, rgba(139, 92, 246, 0.24), transparent 26rem),
    radial-gradient(circle at 70% 54%, rgba(6, 182, 212, 0.13), transparent 30rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.66) 54%, rgba(5, 5, 5, 0.88)),
    linear-gradient(to top, #050505, transparent 42%);
}

.hero-content {
  max-width: 980px;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 980px;
  font-size: clamp(4.6rem, 9vw, 6.25rem);
  line-height: 0.88;
}

.hero p {
  max-width: 680px;
  color: #a1a1a6;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.eyebrow {
  color: rgba(245, 245, 247, 0.74);
}

.eyebrow::before {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-c));
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
}

.section-title {
  color: #f5f5f7;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
}

.section-copy,
.footer-panel p,
.footer-panel a,
.faq-card p,
.why-card p,
.compliance-card p,
.location-list li,
.unit-cards-note,
.disclaimer {
  color: #a1a1a6;
}

.glass-card,
.stat,
.detail,
.trust-card,
.feature-card,
.highlight-card,
.why-card,
.compliance-card,
.about-panel,
.location-panel,
.form-panel,
.form-intro,
.faq-card,
.footer-panel,
.unit-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--oak-shadow);
}

.highlight-card,
.why-card,
.compliance-card,
.faq-card,
.unit-card {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.highlight-card:hover,
.why-card:hover,
.compliance-card:hover,
.faq-card:hover,
.unit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
}

.highlight-card span,
.why-card strong,
.compliance-card strong,
.faq-card strong,
.unit-card-title,
.footer-panel strong {
  color: #f5f5f7;
}

.highlight-card strong {
  color: #ffffff;
  letter-spacing: -0.04em;
}

.about-panel,
.location-panel,
.form-panel,
.form-intro,
.footer-panel {
  border-radius: 34px;
}

.gallery-image {
  min-height: min(72vh, 720px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--oak-shadow);
}

.gallery-caption {
  background: linear-gradient(to top, rgba(5, 5, 5, 0.82), transparent);
}

.gallery-arrow,
.gallery-dot {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
}

.gallery-dot.is-active {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-c));
}

.location-list li,
.mini-compliance span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.76);
}

.field label {
  color: rgba(245, 245, 247, 0.6);
}

.field input,
.field select,
.field textarea,
.country-picker-trigger,
.country-picker-panel,
.whatsapp-modal-dialog {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #f5f5f7;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.field input::placeholder,
.field textarea::placeholder,
.country-picker-search::placeholder {
  color: rgba(245, 245, 247, 0.42);
}

.field select option {
  background: #101014;
  color: #f5f5f7;
}

.country-picker-label,
.country-picker-code,
.country-picker-option,
.country-picker-empty,
.whatsapp-modal-note {
  color: rgba(245, 245, 247, 0.76);
}

.country-picker-option:hover,
.country-picker-option.is-selected {
  background: rgba(255, 255, 255, 0.08);
}

.footer-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.mobile-contact-bar,
.language-switcher,
.whatsapp-float {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mobile-contact-bar a,
.language-switcher button {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #f5f5f7;
}

.mobile-contact-bar a:last-child,
.language-switcher button.is-active {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-c));
  color: #ffffff;
}

.whatsapp-float {
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(6, 182, 212, 0.18);
}

.language-choice-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.language-choice-overlay[hidden] {
  display: none;
}

.language-choice-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 25%, rgba(139, 92, 246, 0.28), transparent 28rem),
    radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.2), transparent 30rem),
    rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.language-choice-card {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.58);
  padding: clamp(1.5rem, 5vw, 2.4rem);
  text-align: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.language-choice-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  color: rgba(245, 245, 247, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.language-choice-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 0.95;
}

.language-choice-card p {
  margin: 0.9rem auto 0;
  color: #a1a1a6;
  line-height: 1.7;
}

.language-choice-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.language-choice-option {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #f5f5f7;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.language-choice-option:first-child {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b), var(--accent-c));
  color: #ffffff;
  box-shadow: 0 18px 52px rgba(37, 99, 235, 0.34);
}

.language-choice-loading {
  color: #a1a1a6;
}

@media (min-width: 920px) {
  .highlight-grid,
  .why-grid,
  .compliance-grid,
  .faq-grid,
  .unit-cards-grid {
    gap: 1.15rem;
  }

  .contact-layout {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding: 7.5rem 0 5rem;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .section {
    padding: 5.2rem 0;
  }

  .section-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Screenshot-style language switcher: fixed segmented control, no popup. */
.language-switcher {
  left: 16px;
  right: auto;
  bottom: 92px;
  z-index: 76;
  gap: 0;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 8, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 45px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.language-switcher button {
  min-width: 74px;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  background: #1b1b1f;
  color: #f5f5f7;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switcher button + button {
  margin-left: 4px;
}

.language-switcher button.is-active {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #7c5cff 0%, #3b82f6 48%, #06b6d4 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.34);
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.language-choice-overlay {
  display: none !important;
}

@media (max-width: 520px) {
  .language-switcher {
    left: 12px;
    bottom: 88px;
    padding: 6px;
  }

  .language-switcher button {
    min-width: 60px;
    min-height: 54px;
    font-size: 1.18rem;
  }
}

/* Final luxury gold system: Apple polish with Dubai real estate warmth. */
:root {
  --oak-ink: #f5f0e8;
  --oak-panel: #080808;
  --oak-card: rgba(255, 255, 255, 0.05);
  --oak-line: rgba(201, 168, 76, 0.2);
  --oak-muted: #a8a39d;
  --oak-soft: #c8c0b6;
  --oak-white: #f5f0e8;
  --oak-ivory: #080808;
  --oak-cream: #0a0a0a;
  --oak-sand: rgba(201, 168, 76, 0.12);
  --oak-gold: #c9a84c;
  --oak-gold-soft: rgba(201, 168, 76, 0.18);
  --oak-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --accent-a: #c9a84c;
  --accent-b: #e8c96a;
  --accent-c: #f5df91;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

html {
  background: #080808;
}

body {
  background:
    radial-gradient(circle at 20% 8%, rgba(201, 168, 76, 0.08), transparent 32rem),
    radial-gradient(circle at 82% 42%, rgba(232, 201, 106, 0.065), transparent 34rem),
    linear-gradient(180deg, #080808 0%, #0b0b0a 48%, #080808 100%);
  color: #a8a39d;
  font-family: var(--font-body);
  font-weight: 400;
}

body::before,
body::after {
  filter: blur(140px);
  opacity: 0.08;
  background: #c9a84c;
}

body::before {
  top: -12rem;
  left: -10rem;
}

body::after {
  right: -12rem;
  bottom: 18rem;
}

.topbar {
  border-bottom: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(8, 8, 8, 0.66);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand span,
.nav-links a,
.nav-phone {
  color: rgba(245, 240, 232, 0.72);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #f5f0e8;
}

h1,
h2,
h3,
.section-title {
  color: #f5f0e8;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(5rem, 8vw, 6.25rem);
  line-height: 0.9;
}

.section-title {
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: 0.94;
}

.hero p,
.section-copy,
.footer-panel p,
.footer-panel a,
.faq-card p,
.why-card p,
.compliance-card p,
.location-list li,
.unit-cards-note,
.disclaimer {
  color: #a8a39d;
}

.eyebrow,
.footer-panel strong,
.highlight-card span,
.unit-card-label,
.field label {
  color: #c9a84c;
}

.eyebrow::before {
  background: linear-gradient(90deg, #c9a84c, #e8c96a);
}

.section {
  padding: clamp(6.25rem, 10vw, 10rem) 0;
}

.hero-shade {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-bg {
  opacity: 1;
}

.btn-primary,
.mobile-contact-bar a:last-child,
.language-switcher button.is-active,
.gallery-dot.is-active {
  border-color: rgba(201, 168, 76, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow:
    0 18px 48px rgba(201, 168, 76, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 24px 68px rgba(201, 168, 76, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-ghost {
  border-color: rgba(201, 168, 76, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f0e8;
}

.glass-card,
.stat,
.detail,
.trust-card,
.feature-card,
.highlight-card,
.why-card,
.compliance-card,
.about-panel,
.location-panel,
.form-panel,
.form-intro,
.faq-card,
.footer-panel,
.unit-card,
.gallery-image {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.highlight-card:hover,
.why-card:hover,
.compliance-card:hover,
.faq-card:hover,
.unit-card:hover {
  border-color: rgba(232, 201, 106, 0.34);
  background: rgba(255, 255, 255, 0.075);
}

.highlight-card strong,
.why-card strong,
.compliance-card strong,
.faq-card strong,
.unit-card-title {
  color: #f5f0e8;
}

.form-intro {
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 168, 76, 0.1), transparent 20rem),
    rgba(255, 255, 255, 0.05);
}

.field input,
.field select,
.field textarea,
.country-picker-trigger,
.country-picker-panel,
.whatsapp-modal-dialog {
  border-color: rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #f5f0e8;
}

.field input::placeholder,
.field textarea::placeholder,
.country-picker-search::placeholder {
  color: rgba(168, 163, 157, 0.58);
}

.field select option {
  background: #10100f;
  color: #f5f0e8;
}

.location-list li,
.mini-compliance span,
.country-picker-option:hover,
.country-picker-option.is-selected {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #c8c0b6;
}

.mobile-contact-bar,
.language-switcher,
.whatsapp-float {
  border-color: rgba(201, 168, 76, 0.22);
  background: rgba(8, 8, 8, 0.72);
}

.mobile-contact-bar a,
.language-switcher button {
  border-color: rgba(201, 168, 76, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f0e8;
}

.language-switcher button.is-active {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #c9a84c 0%, #e8c96a 100%);
  color: #080808;
}

.whatsapp-float {
  color: #c9a84c;
  box-shadow: 0 22px 60px rgba(201, 168, 76, 0.14);
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(3.9rem, 17vw, 5rem);
  }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin {
  to { --angle: 360deg; }
}

.hero {
  min-height: calc(100svh - 76px);
  align-items: center;
  padding: 2rem 0 4rem;
}

.hero-content {
  transform: translateY(-3vh);
}

.hero .cta-row {
  align-items: flex-start;
}

.btn-whatsapp {
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 24px 68px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp i {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-outer {
  position: relative;
  border-radius: 50px;
  display: inline-block;
  width: 100%;
  margin-top: 0.9rem;
}

.btn-border-ring {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: conic-gradient(from var(--angle), transparent 55deg, #E8C96A 85deg, #ffffff 100deg, #C9A84C 115deg, transparent 145deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 2.8s linear infinite;
  pointer-events: none;
}

.btn-glow-ring {
  position: absolute;
  inset: -10px;
  border-radius: 60px;
  background: conic-gradient(from var(--angle), transparent 55deg, rgba(201,168,76,0.5) 85deg, rgba(232,201,106,0.6) 100deg, rgba(201,168,76,0.4) 115deg, transparent 145deg);
  filter: blur(14px);
  animation: spin 2.8s linear infinite;
  pointer-events: none;
}

.btn-outer .btn {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 0;
  color: #1a0e00;
  font-weight: 800;
}

@media (min-width: 720px) {
  .hero .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding: 1.5rem 0 4rem;
  }

  .hero-content {
    transform: none;
  }
}

body.is-rtl,
.is-rtl p,
.is-rtl a,
.is-rtl button,
.is-rtl input,
.is-rtl select,
.is-rtl textarea,
.is-rtl label,
.is-rtl span,
.is-rtl li,
.is-rtl small {
  font-family: "Cairo", sans-serif;
}

.is-rtl h1,
.is-rtl h2,
.is-rtl h3,
.is-rtl .section-title,
.is-rtl .highlight-card strong {
  font-family: var(--font-heading);
}

.is-rtl .nav {
  flex-direction: row;
}

.is-rtl .brand {
  direction: ltr;
  flex-direction: row;
  text-align: left;
}

.is-rtl .nav-links,
.is-rtl .nav-actions {
  flex-direction: row-reverse;
}

.is-rtl .nav-links {
  text-align: right;
}

.is-rtl .contact-layout {
  direction: rtl;
}

.form-whatsapp-alt {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  text-align: center;
}

.form-whatsapp-alt span {
  color: var(--oak-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.payload-hidden {
  display: none !important;
}

.hidden-field {
  position: fixed !important;
  inset: 0 auto auto 0 !important;
  width: 1px !important;
  height: 1px !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.gallery,
.gallery-section {
  overflow: hidden !important;
  contain: paint !important;
}

.whatsapp-float-wrap,
.mobile-contact-bar {
  display: none !important;
}

.lead-strip-section {
  position: relative;
  z-index: 4;
  padding: 0 0 clamp(2rem, 4vw, 3.5rem);
  background: #050505;
}

.lead-strip-panel {
  margin-top: -46px;
  padding: clamp(1rem, 1.7vw, 1.35rem);
}

.lead-strip-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.lead-strip-heading .eyebrow {
  margin-bottom: 0.42rem;
}

.lead-strip-heading .section-title {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.lead-strip-heading .section-copy {
  max-width: 430px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lead-strip-section #landingLeadForm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.22fr);
  gap: 0.85rem;
  align-items: end;
}

.lead-strip-section .field-grid {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(270px, 1.35fr) minmax(190px, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.lead-strip-section .field {
  margin-bottom: 0;
}

.lead-strip-section .phone-input-row {
  grid-template-columns: minmax(118px, 0.44fr) minmax(0, 1fr);
}

.lead-strip-section .btn-outer {
  margin-top: 0;
  align-self: end;
}

.lead-strip-section .btn-outer .btn {
  min-height: 48px;
  padding-inline: 1rem;
  white-space: nowrap;
}

.lead-strip-section .form-security-note,
.lead-strip-section .disclaimer,
.lead-strip-section .form-error {
  grid-column: 1 / -1;
}

.lead-strip-section .form-security-note {
  margin-top: 0.05rem;
}

.lead-strip-section .disclaimer {
  margin-top: -0.35rem;
  text-align: center;
}

.lead-strip-section .form-success {
  padding: 1rem;
}

.hero {
  min-height: clamp(560px, 74svh, 720px);
}

@media (min-width: 980px) {
  .lead-strip-section .field-grid {
    grid-template-columns: minmax(170px, 1fr) minmax(270px, 1.35fr) minmax(190px, 1fr);
  }

  .lead-strip-section .field.is-phone {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .lead-strip-panel {
    margin-top: -24px;
    padding: 1rem;
  }

  .lead-strip-heading {
    display: block;
  }

  .lead-strip-heading .section-copy {
    max-width: none;
    margin-top: 0.45rem;
  }

  .lead-strip-section #landingLeadForm,
  .lead-strip-section .field-grid,
  .lead-strip-section .phone-input-row {
    grid-template-columns: 1fr;
  }

  .lead-strip-section .btn-outer {
    width: 100%;
  }
}

.thank-you-page .topbar {
  position: fixed;
  width: 100%;
}

.thank-you-main {
  min-height: 100svh;
}

.thank-you-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
}

.thank-you-bg,
.thank-you-shade {
  position: absolute;
  inset: 0;
}

.thank-you-bg {
  background-position: center;
  background-size: cover;
  opacity: 0.62;
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.02);
}

.thank-you-shade {
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 168, 76, 0.14), transparent 24rem),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.58), rgba(8, 8, 8, 0.82) 52%, #080808 100%);
}

.thank-you-shell {
  position: relative;
  z-index: 1;
}

.thank-you-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: 28px;
  background: rgba(8, 8, 8, 0.64);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: center;
}

.thank-you-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 1.8rem auto 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.09);
  color: #c9a84c;
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.16);
}

.thank-you-icon i {
  font-size: 3rem;
}

.thank-you-card h1 {
  max-width: 780px;
  margin: 0 auto;
  color: #f5f0e8;
  font-size: clamp(3.3rem, 8vw, 6rem);
  line-height: 0.92;
}

.thank-you-card .section-copy {
  max-width: 680px;
  margin: 1.5rem auto 0;
  color: #c9c2b8;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.8;
}

.thank-you-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.thank-you-details span {
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.055);
  color: #f5f0e8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thank-you-card .cta-row {
  justify-content: center;
  align-items: center;
}

.thank-you-page .footer {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
}

.is-rtl .thank-you-card {
  text-align: center;
}

@media (min-width: 720px) {
  .thank-you-card .cta-row {
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .thank-you-page .topbar {
    position: sticky;
  }

  .thank-you-hero {
    min-height: calc(100svh - 72px);
    padding-top: 3.5rem;
  }

  .thank-you-card {
    border-radius: 22px;
  }

  .thank-you-card h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }
}

.footer-tagline {
  margin: 0.8rem 0 0;
  color: var(--oak-gold);
  font-weight: 700;
}

@media (max-width: 760px) {
  .is-rtl .nav-links,
  .is-rtl .nav-actions,
  .is-rtl .cta-row,
  .is-rtl .mobile-contact-bar {
    flex-direction: row-reverse;
  }

  .is-rtl .hero-content,
  .is-rtl .section-kicker,
  .is-rtl .gallery-header,
  .is-rtl .form-intro,
  .is-rtl .form-panel {
    text-align: right;
  }
}

@keyframes galleryKenBurns {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.14) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes galleryProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.gallery {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
}

.gallery-track {
  align-items: stretch;
  direction: ltr;
}

.is-rtl .gallery-track {
  direction: ltr !important;
}

.gallery-slide,
.gallery-image {
  min-height: clamp(420px, 72vh, 760px);
}

.is-rtl .gallery-slide {
  direction: rtl;
}

.gallery-image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 24px;
  background: #080808 !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 30px 90px -55px rgba(0, 0, 0, 0.85);
}

.gallery-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  transform: scale(1.04);
  transform-origin: center;
  filter: saturate(1.06) contrast(1.04);
  will-change: transform;
}

.gallery-slide.is-active .gallery-photo {
  animation: galleryKenBurns 6.8s ease-out both;
}

.gallery-slide:nth-child(even).is-active .gallery-photo {
  transform-origin: 72% 46%;
}

.gallery-slide:nth-child(odd).is-active .gallery-photo {
  transform-origin: 28% 54%;
}

.gallery-image::after {
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0.18) 56%, rgba(8, 8, 8, 0.06)),
    radial-gradient(circle at 18% 82%, rgba(201, 168, 76, 0.22), transparent 34%);
}

.gallery-caption {
  z-index: 2;
  background: none;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.gallery-slide:first-child .gallery-caption,
.gallery-slide.is-active .gallery-caption {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.gallery-caption span {
  color: #e8c96a;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.gallery-caption strong {
  color: #f5f0e8;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.gallery-progress {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.15rem;
  z-index: 3;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.42);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-slide.is-active .gallery-photo {
    animation: none;
    transform: scale(1.04);
  }

  .gallery-caption {
    opacity: 1;
    transform: none;
  }

  .gallery-progress span {
    animation: none !important;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .gallery {
    border-radius: 22px;
  }

  .gallery-slide,
  .gallery-image {
    min-height: min(66vh, 520px);
  }

  .gallery-image {
    border-radius: 18px;
  }

  .gallery-progress {
    left: 1rem;
    right: 1rem;
    bottom: 0.85rem;
  }
}

/* Attached Raw District Arabic template */
body.template-raw-ar {
  --raw-bg: #15130f;
  --raw-bg-deep: #100e0a;
  --raw-panel: #1a1a1a;
  --raw-card: #1d1b17;
  --raw-line: rgba(201, 168, 76, 0.2);
  --raw-gold: #e6c364;
  --raw-gold-deep: #c9a84c;
  --raw-ink: #e8e1db;
  --raw-muted: #d0c5b2;
  --raw-on-gold: #3d2e00;
  --raw-banner-height: 34px;
  --font-heading: "Cairo", "Hanken Grotesk", sans-serif;
  --font-body: "Cairo", "Hanken Grotesk", sans-serif;
  background: #15130f;
  color: var(--raw-ink);
}

body.template-raw-ar::before,
body.template-raw-ar::after {
  display: none;
}

.template-raw-ar .raw-launch-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  min-height: var(--raw-banner-height);
  place-items: center;
  border-bottom: 1px solid rgba(61, 46, 0, 0.14);
  background: var(--raw-gold);
  color: var(--raw-on-gold);
  padding: 0.42rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.template-raw-ar .topbar {
  position: fixed;
  inset: 0 0 auto;
  min-height: 80px;
  border-bottom: 1px solid var(--raw-line);
  background: rgba(21, 19, 15, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.template-raw-ar.has-launch-banner .topbar {
  inset: var(--raw-banner-height) 0 auto;
}

.template-raw-ar .nav {
  min-height: 80px;
  width: min(1440px, calc(100% - 10vw));
}

.template-raw-ar .brand img {
  width: 142px;
  max-height: 44px;
  filter: brightness(1.08);
}

.template-raw-ar .nav-links {
  gap: 1.45rem;
}

.template-raw-ar .nav-links a,
.template-raw-ar .nav-phone {
  color: var(--raw-muted);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.template-raw-ar .nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.1);
  gap: 0;
  white-space: nowrap;
}

.template-raw-ar .nav-phone i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  color: var(--raw-gold);
  font-size: 1.15rem;
}

.template-raw-ar .nav-phone:hover,
.template-raw-ar .nav-phone:focus-visible {
  color: var(--raw-gold);
  outline: none;
}

.template-raw-ar .nav-links a:first-child,
.template-raw-ar .nav-links a:hover,
.template-raw-ar .nav-links a:focus-visible {
  color: var(--raw-gold);
}

.template-raw-ar .nav-links a:first-child {
  border-bottom: 2px solid var(--raw-gold);
  padding-bottom: 0.3rem;
}

.template-raw-ar .raw-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  padding: 0.68rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.template-raw-ar .raw-nav-whatsapp:hover,
.template-raw-ar .raw-nav-whatsapp:focus-visible {
  background: rgba(37, 211, 102, 0.18);
  outline: none;
}

.template-raw-ar .btn {
  min-height: 48px;
  border-radius: 4px;
  padding: 0.9rem 1.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.template-raw-ar .btn-primary {
  border: 0;
  background: var(--raw-gold);
  color: var(--raw-on-gold);
  box-shadow: 0 18px 42px rgba(201, 168, 76, 0.18);
}

.template-raw-ar .btn-primary:hover,
.template-raw-ar .btn-primary:focus-visible {
  background: #f0cf74;
  color: var(--raw-on-gold);
  transform: translateY(-2px);
}

.template-raw-ar .btn-ghost {
  border: 1px solid rgba(232, 225, 219, 0.22);
  background: transparent;
  color: var(--raw-ink);
}

.template-raw-ar .btn-whatsapp {
  border: 0;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.2);
}

.template-raw-ar .raw-template-page {
  background: var(--raw-bg);
}

.template-raw-ar .raw-template-hero {
  min-height: 90svh;
  padding: 10.5rem 0 4.5rem;
  overflow: hidden;
}

.template-raw-ar .hero-bg {
  opacity: 1;
  filter: saturate(0.94) contrast(1.04);
  transform-origin: center;
  animation: rawKenBurns 20s ease-in-out infinite;
}

.template-raw-ar .hero-shade {
  background:
    linear-gradient(270deg, rgba(21, 19, 15, 0.96), rgba(21, 19, 15, 0.68) 52%, rgba(21, 19, 15, 0.2)),
    linear-gradient(to top, var(--raw-bg), rgba(21, 19, 15, 0.16) 46%);
}

.template-raw-ar .hero-content {
  max-width: 800px;
  margin-inline: auto;
  padding: 0;
  text-align: center !important;
  transform: none;
}

.template-raw-ar .eyebrow {
  color: var(--raw-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.template-raw-ar .eyebrow::before {
  display: none;
}

.template-raw-ar h1,
.template-raw-ar h2,
.template-raw-ar h3,
.template-raw-ar .section-title,
.template-raw-ar .highlight-card strong {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.template-raw-ar h1 {
  max-width: 820px;
  margin-inline: auto;
  color: var(--raw-ink);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.16;
}

.template-raw-ar .hero p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--raw-muted);
  font-size: 1.12rem;
  line-height: 1.85;
}

.template-raw-ar .hero .cta-row {
  justify-content: center;
  align-items: center;
}

.template-raw-ar .hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.template-raw-ar .lead-strip-section {
  border-top: 1px solid var(--raw-line);
  border-bottom: 1px solid var(--raw-line);
  background: rgba(26, 26, 26, 0.92);
  padding: 2.2rem 0;
}

.template-raw-ar .lead-strip-panel {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.template-raw-ar .lead-strip-heading {
  display: none;
}

.template-raw-ar .lead-strip-section #landingLeadForm {
  grid-template-columns: minmax(0, 1fr) minmax(130px, auto);
  align-items: start;
  gap: 1rem;
}

.template-raw-ar .lead-strip-section .field-grid {
  grid-template-columns: minmax(150px, 1fr) minmax(250px, 1.35fr) minmax(180px, 1fr);
  gap: 0.85rem;
  overflow: visible;
}

.template-raw-ar .field.is-phone {
  position: relative;
  z-index: 25;
}

.template-raw-ar .field label {
  margin-bottom: 0.35rem;
  color: var(--raw-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.template-raw-ar .field input,
.template-raw-ar .field select,
.template-raw-ar .country-picker-trigger {
  min-height: 42px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  background: rgba(21, 19, 15, 0.56);
  color: var(--raw-ink);
  box-shadow: none;
}

.template-raw-ar .country-picker-label {
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.template-raw-ar .country-picker.is-open {
  z-index: 120;
}

.template-raw-ar .country-picker-panel {
  z-index: 150;
  width: min(430px, calc(100vw - 28px));
  border: 1px solid rgba(201, 168, 76, 0.38);
  border-radius: 10px;
  background: #11100d;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: 0.8rem;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.template-raw-ar .country-picker-search {
  min-height: 46px;
  border-color: rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  background: #1b1914;
  color: var(--raw-ink);
  margin-bottom: 0.7rem;
  padding: 0.75rem 0.9rem;
  direction: rtl;
  text-align: right;
}

.template-raw-ar .country-picker-search::placeholder {
  color: rgba(232, 225, 219, 0.58);
}

.template-raw-ar .country-picker-list {
  max-height: 286px;
  gap: 0.22rem;
  padding: 0 0 0 0.2rem;
}

.template-raw-ar .country-picker-option {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--raw-ink);
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  gap: 0.7rem;
  padding: 0.65rem 0.7rem;
  direction: ltr;
  text-align: left;
}

.template-raw-ar .country-picker-option:hover,
.template-raw-ar .country-picker-option:focus-visible {
  border-color: rgba(201, 168, 76, 0.22);
  background: rgba(201, 168, 76, 0.1);
}

.template-raw-ar .country-picker-option.is-selected {
  border-color: rgba(201, 168, 76, 0.52);
  background: rgba(201, 168, 76, 0.18);
}

.template-raw-ar .country-picker-option-code {
  color: var(--raw-gold);
  font-weight: 800;
  white-space: nowrap;
}

.template-raw-ar .country-picker-option-label {
  color: var(--raw-ink);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.template-raw-ar .country-picker-option-flag {
  justify-self: end;
}

.template-raw-ar .lead-strip-section .btn-outer {
  margin-top: 1.43rem;
}

.template-raw-ar .lead-strip-section .btn-outer .btn {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  white-space: nowrap;
}

.template-raw-ar .btn-border-ring,
.template-raw-ar .btn-glow-ring {
  display: none;
}

.template-raw-ar .lead-strip-section .disclaimer,
.template-raw-ar .lead-strip-section .form-security-note {
  color: rgba(232, 225, 219, 0.62);
  font-size: 0.76rem;
  line-height: 1.55;
}

.template-raw-ar .raw-form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 1.1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 1rem;
}

.template-raw-ar .raw-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(232, 225, 219, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.template-raw-ar .raw-form-trust i {
  color: var(--raw-gold);
}

.template-raw-ar .raw-template-page .section {
  padding: 7.5rem 0;
}

.template-raw-ar .section-title {
  color: var(--raw-ink);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1.25;
}

.template-raw-ar .section-copy {
  color: var(--raw-muted);
}

.template-raw-ar .raw-template-centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center !important;
}

.template-raw-ar .highlight-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.template-raw-ar .highlight-card,
.template-raw-ar .raw-value-card,
.template-raw-ar .faq-card {
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  background: var(--raw-panel);
  box-shadow: none;
}

.template-raw-ar .highlight-card {
  min-height: 142px;
  padding: 1.5rem;
}

.template-raw-ar .highlight-card span {
  color: var(--raw-muted);
  font-size: 0.78rem;
}

.template-raw-ar .highlight-card strong {
  color: var(--raw-gold);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.45;
}

.template-raw-ar .raw-template-gallery {
  background: var(--raw-bg-deep);
  overflow: hidden;
}

.template-raw-ar .raw-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 1fr);
  gap: 1.5rem;
  min-height: 600px;
}

.template-raw-ar .raw-gallery-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 1.5rem;
}

.template-raw-ar .raw-gallery-item {
  position: relative;
  min-height: 288px;
  overflow: hidden;
  border-radius: 4px;
  background: #0d0c09;
}

.template-raw-ar .raw-gallery-feature {
  min-height: 600px;
}

.template-raw-ar .raw-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 700ms ease, filter 700ms ease;
}

.template-raw-ar .raw-gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.06);
}

.template-raw-ar .raw-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 45%);
}

.template-raw-ar .raw-gallery-item span {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 1;
  display: inline-flex;
  border-radius: 4px;
  background: var(--raw-gold-deep);
  color: #fff;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.template-raw-ar .raw-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.template-raw-ar .raw-value-card {
  padding: 2.2rem;
  border-right: 2px solid rgba(201, 168, 76, 0.28);
}

.template-raw-ar .raw-value-card i {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--raw-gold);
  font-size: 2.15rem;
}

.template-raw-ar .raw-value-card h3 {
  margin: 0 0 0.8rem;
  color: var(--raw-ink);
  font-size: 1.16rem;
  line-height: 1.55;
}

.template-raw-ar .raw-value-card p {
  margin: 0;
  color: var(--raw-muted);
  line-height: 1.8;
}

.template-raw-ar .raw-template-location {
  background: var(--raw-card);
}

.template-raw-ar .raw-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2.5rem;
  align-items: center;
}

.template-raw-ar .location-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.template-raw-ar .location-list li {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0 2rem 0 0;
  color: var(--raw-ink);
  font-size: 1.08rem;
  line-height: 1.8;
}

.template-raw-ar .location-list li::before {
  content: "✓";
  position: absolute;
  top: 0.12rem;
  right: 0;
  color: var(--raw-gold);
  font-weight: 800;
}

.template-raw-ar .raw-location-media {
  position: relative;
  min-height: 500px;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
}

.template-raw-ar .raw-location-media::after {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-radius: 4px;
}

.template-raw-ar .raw-location-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.68);
  transition: filter 700ms ease, transform 700ms ease;
}

.template-raw-ar .raw-location-media:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.template-raw-ar .faq-section {
  max-width: 1000px;
  margin-inline: auto;
}

.template-raw-ar .faq-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.template-raw-ar .faq-card {
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.64);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.template-raw-ar .faq-card strong {
  color: var(--raw-ink);
}

.template-raw-ar .faq-card p {
  color: var(--raw-muted);
}

.template-raw-ar .raw-template-trust {
  background: var(--raw-gold);
  color: var(--raw-on-gold);
  padding: 4.5rem 0;
  text-align: center;
}

.template-raw-ar .raw-template-trust .shell {
  max-width: 760px;
}

.template-raw-ar .raw-template-trust > .shell > i {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.template-raw-ar .raw-template-trust h2 {
  margin: 0;
  color: var(--raw-on-gold);
  font-size: 2.35rem;
  line-height: 1.35;
}

.template-raw-ar .raw-template-trust p {
  margin: 1rem auto 0;
  color: rgba(61, 46, 0, 0.82);
  line-height: 1.9;
}

.template-raw-ar .raw-trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 1.8rem;
}

.template-raw-ar .raw-trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--raw-on-gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.template-raw-ar footer.section {
  border-top: 1px solid var(--raw-line);
  background: var(--raw-bg-deep);
}

.template-raw-ar .footer-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.template-raw-ar .footer-panel strong,
.template-raw-ar .footer-panel a:hover,
.template-raw-ar .footer-panel a:focus-visible {
  color: var(--raw-gold);
}

.template-raw-ar .footer-panel p,
.template-raw-ar .footer-panel a,
.template-raw-ar .copyright {
  color: var(--raw-muted);
}

.template-raw-ar .footer-call-icon,
.template-raw-ar .footer-panel a[data-whatsapp-cta],
.template-raw-ar .mobile-contact-bar a[data-whatsapp-cta] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.template-raw-ar .footer-call-icon {
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.1);
}

.template-raw-ar .footer-call-icon i,
.template-raw-ar .footer-panel a[data-whatsapp-cta] i,
.template-raw-ar .mobile-contact-bar a[data-whatsapp-cta] i {
  color: #25d366;
  font-size: 1.05rem;
  line-height: 1;
}

.template-raw-ar .footer-call-icon i {
  color: var(--raw-gold);
}

.template-raw-ar .whatsapp-float-wrap {
  display: block !important;
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
}

.template-raw-ar .whatsapp-float {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.28);
  color: #ffffff;
}

.template-raw-ar .whatsapp-float .bx {
  font-size: 1.65rem;
}

.template-raw-ar .whatsapp-float:hover,
.template-raw-ar .whatsapp-float:focus-visible {
  background: #1fbd59;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.36);
  outline: none;
}

.template-raw-ar .permit-qr-badge {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 88;
  display: inline-grid;
  grid-template-columns: 52px;
  justify-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  background: rgba(15, 14, 11, 0.86);
  color: var(--raw-gold);
  padding: 0.42rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  user-select: none;
}

.template-raw-ar .permit-qr-badge img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: #ffffff;
  object-fit: cover;
}

.template-raw-ar .permit-qr-badge span {
  max-width: 64px;
  color: var(--raw-gold);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

@media (min-width: 920px) {
  .template-raw-ar .nav-links,
  .template-raw-ar .nav-actions {
    display: flex;
  }
}

@media (max-width: 919px) {
  .template-raw-ar .nav {
    width: min(100% - 28px, 720px);
  }

  .template-raw-ar .nav-actions {
    display: flex;
    margin-inline-start: auto;
  }

  .template-raw-ar .raw-nav-whatsapp,
  .template-raw-ar .nav-actions .btn {
    display: none;
  }

  .template-raw-ar .nav-phone {
    width: 44px;
    height: 44px;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.24);
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.1);
  }

  .template-raw-ar .nav-phone span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .template-raw-ar .nav-phone i {
    width: auto;
    height: auto;
    border: 0;
    font-size: 1.15rem;
  }
}

@media (max-width: 699px) {
  .template-raw-ar .permit-qr-badge {
    bottom: calc(max(12px, env(safe-area-inset-bottom)) + 74px);
  }
}

@media (max-width: 520px) {
  .template-raw-ar .permit-qr-badge {
    left: max(12px, env(safe-area-inset-left));
    grid-template-columns: 46px;
    padding: 0.36rem;
  }

  .template-raw-ar .permit-qr-badge img {
    width: 46px;
    height: 46px;
  }

  .template-raw-ar .permit-qr-badge span {
    max-width: 58px;
    font-size: 0.54rem;
  }
}

@keyframes rawKenBurns {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(-1.4%, -0.8%, 0);
  }
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .template-raw-ar .hero-bg {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .template-raw-ar .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .template-raw-ar .raw-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.template-raw-ar {
    --raw-banner-height: 42px;
  }

  .template-raw-ar .raw-template-hero {
    min-height: auto;
    padding: 7.8rem 0 2.4rem;
  }

  .template-raw-ar h1 {
    font-size: 2.45rem;
  }

  .template-raw-ar .hero p {
    font-size: 1rem;
  }

  .template-raw-ar .hero .cta-row {
    flex-direction: column;
  }

  .template-raw-ar .hero .btn {
    width: min(100%, 360px);
  }

  .template-raw-ar .lead-strip-section #landingLeadForm,
  .template-raw-ar .lead-strip-section .field-grid,
  .template-raw-ar .lead-strip-section .phone-input-row,
  .template-raw-ar .raw-gallery-grid,
  .template-raw-ar .raw-gallery-stack,
  .template-raw-ar .raw-location-grid {
    grid-template-columns: 1fr;
  }

  .template-raw-ar .lead-strip-section .btn-outer {
    width: 100%;
    margin-top: 0;
  }

  .template-raw-ar .lead-strip-section .disclaimer {
    text-align: right;
  }

  .template-raw-ar .raw-form-trust {
    justify-content: center;
    gap: 0.8rem 1rem;
  }

  .template-raw-ar .country-picker-trigger .country-picker-label {
    display: none;
  }

  .template-raw-ar .country-picker-trigger {
    font-size: 1rem;
  }

  .template-raw-ar .highlight-grid,
  .template-raw-ar .raw-value-grid {
    grid-template-columns: 1fr;
  }

  .template-raw-ar .raw-gallery-grid,
  .template-raw-ar .raw-gallery-feature,
  .template-raw-ar .raw-location-media {
    min-height: auto;
  }

  .template-raw-ar .raw-gallery-item {
    min-height: 280px;
  }

  .template-raw-ar .raw-location-media {
    aspect-ratio: 4 / 3;
  }

  .template-raw-ar .raw-template-page .section {
    padding: 5rem 0;
  }

  .template-raw-ar .section-title,
  .template-raw-ar .raw-template-trust h2 {
    font-size: 2rem;
  }
}
