@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Tajawal:wght@400;700&family=Almarai:wght@400;700&family=Outfit:wght@400;500&family=Public+Sans:wght@400&display=swap');

:root {
  --black: rgba(0, 0, 0, 1);
  --body-large-medium-font-family: "Inter", Helvetica;
  --body-large-medium-font-size: 18px;
  --body-large-medium-font-weight: 500;
  --body-large-regular-font-family: "Inter", Helvetica;
  --body-large-regular-font-size: 18px;
  --body-large-regular-font-weight: 400;
  --caption-medium-font-family: "Inter", Helvetica;
  --caption-medium-font-size: 11px;
  --caption-medium-font-weight: 500;
  --foundation-brownbrown-100: rgba(229, 221, 214, 1);
  --foundation-brownbrown-300: rgba(199, 181, 167, 1);
  --foundation-brownbrown-400: rgba(189, 166, 149, 1);
  --foundation-brownbrown-50: rgba(247, 244, 242, 1);
  --foundation-brownbrown-500: rgba(172, 144, 123, 1);
  --foundation-brownbrown-700: rgba(122, 102, 87, 1);
  --h1-bold-font-family: "Inter", Helvetica;
  --h1-bold-font-size: 40px;
  --h1-bold-font-weight: 700;
  --h2-bold-font-family: "Inter", Helvetica;
  --h2-bold-font-size: 28px;
  --h2-bold-font-weight: 700;
  --h-2-font-family: "Tajawal", Helvetica;
  --h-2-font-size: 40px;
  --h-2-font-weight: 700;
  --h-2-line-height: 57px;
  --body-regular-400-font-family: "Public Sans", Helvetica;
  --body-regular-400-font-size: 16px;
  --body-regular-400-font-weight: 400;
  --body-regular-400-line-height: 24px;
  --body-regular-font-family: "Inter", Helvetica;
  --body-regular-font-size: 14px;
  --body-regular-font-weight: 400;
  --list-font-family: "Tajawal", Helvetica;
  --list-font-size: 20px;
  --list-font-weight: 400;
  --list-line-height: 30px;
  --gray-500: rgba(109, 115, 122, 1);
  --light-text-color: rgba(255, 255, 255, 1);
  --SHD: 0px 2px 8px 0px rgba(102, 102, 102, 0.08);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes heroDecorPulse {
  0%, 100% { transform: translate(-50%, -60%) scale(1); opacity: 0.12; }
  50% { transform: translate(-50%, -60%) scale(1.04); opacity: 0.16; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes progressGrow {
  from { width: 0; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--foundation-brownbrown-500);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  font-family: "Inter", Helvetica, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ======== HEADER / HERO ======== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('figmaAssets/rectangle-6.png') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(15, 23, 42, 0.80) 100%);
}

.hero-blur {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 34px;
  background: var(--foundation-brownbrown-400);
  filter: blur(60px);
  z-index: 1;
}

.hero-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 420px;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 77px;
  padding: 0 40px;
  gap: 80px;
  z-index: 100;
  background: transparent;
  transition: top 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  top: 0;
  background: rgba(14, 22, 43, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-logo {
  width: 48px;
  height: 58px;
  flex-shrink: 0;
}

.nav-items {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: "Inter", Helvetica;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.nav-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav-item.active {
  color: var(--foundation-brownbrown-400);
}

.nav-item .chevron-down {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  transition: transform 0.2s;
}

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-dropdown:hover .chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 16px 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(-8px);
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: "Tajawal", "Inter", Helvetica;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  transition: background 0.15s;
  direction: rtl;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  background: rgba(0,0,0,0.04);
}

.nav-dropdown-item svg {
  flex-shrink: 0;
  stroke: #333;
  order: -1;
  width: 18px;
  height: 18px;
}

.nav-dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 6px 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-request {
  height: 48px;
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  color: #fff;
  font-family: var(--body-large-medium-font-family);
  font-size: 16px;
  font-weight: var(--body-large-medium-font-weight);
  transition: background 0.2s, border-color 0.2s;
}

.btn-request:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.nav-icon-btn:hover {
  opacity: 0.8;
}

.nav-icon-btn img {
  width: 36px;
  height: 36px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 800px;
  z-index: 3;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero-title {
  width: 100%;
  font-family: "Tajawal", Helvetica;
  font-weight: 700;
  color: #fff;
  font-size: 52px;
  text-align: center;
  line-height: 1.3;
}

.hero-subtitle {
  width: 100%;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  text-align: center;
  line-height: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.btn-projects {
  padding: 14px 32px;
  background: var(--foundation-brownbrown-500);
  border-radius: 8px;
  color: #fff;
  font-family: var(--body-large-medium-font-family);
  font-size: 16px;
  font-weight: var(--body-large-medium-font-weight);
  text-align: center;
  transition: background 0.2s;
}

.btn-projects:hover {
  background: var(--foundation-brownbrown-700);
}

.btn-download-hero {
  padding: 14px 32px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  color: #fff;
  font-family: var(--body-large-medium-font-family);
  font-size: 16px;
  font-weight: var(--body-large-medium-font-weight);
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.btn-download-hero:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* ======== ABOUT SECTION ======== */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 80px 120px;
  background: #fff;
  margin-bottom: 0;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1297px;
  width: 100%;
}

.about-images {
  position: relative;
  width: 500px;
  height: 320px;
  flex-shrink: 0;
}

.about-img-1 {
  position: absolute;
  width: 97.39%;
  top: -3.01%;
  left: 0;
  border-radius: 16px;
  border: 4px solid #fff;
  object-fit: cover;
  height: auto;
}

.about-img-2 {
  position: absolute;
  top: 8.37%;
  left: 0;
  width: 99.79%;
  border-radius: 16px;
  border: 4px solid #fff;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex: 1;
  direction: rtl;
}

.about-label {
  display: inline-block;
  align-self: flex-start;
  font-family: "Tajawal", Helvetica;
  font-size: 14px;
  font-weight: 700;
  color: var(--foundation-brownbrown-500);
  background: rgba(172, 144, 123, 0.1);
  padding: 6px 20px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.about-title {
  font-family: "Tajawal", Helvetica;
  font-size: 34px;
  font-weight: 700;
  color: #0e162b;
  text-align: right;
  line-height: 1.3;
  margin: 0;
}

.about-desc {
  font-family: "Inter", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 26px;
  text-align: right;
}

.about-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(172, 144, 123, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--foundation-brownbrown-500);
}

.about-feature-item span {
  font-family: "Inter", Helvetica;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 22px;
}

.stat-cards {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
  direction: ltr;
  justify-content: flex-end;
}

.stat-card {
  position: relative;
  width: 189px;
  height: 129px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  background: var(--foundation-brownbrown-50);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.stat-card-decor {
  position: absolute;
  top: -43px;
  left: 84px;
  width: 172px;
  height: 130px;
  opacity: 0.5;
}

.stat-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  position: absolute;
  top: 24px;
  left: 24px;
  width: 141px;
}

.stat-number {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: var(--foundation-brownbrown-500);
  font-size: 34px;
  line-height: 1;
}

.stat-label {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #555;
  font-size: 15px;
  text-align: right;
  direction: rtl;
}

.btn-contact {
  align-self: flex-start;
  width: 210px;
  padding: 14px 28px;
  background: var(--foundation-brownbrown-500);
  border-radius: 10px;
  color: #fff;
  font-family: "Tajawal", Helvetica;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(172, 144, 123, 0.3);
}

.btn-contact:hover {
  background: var(--foundation-brownbrown-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(172, 144, 123, 0.4);
}

/* ======== FEATURED PROPERTIES ======== */
.featured-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 80px;
  background: var(--foundation-brownbrown-50);
}

.section-header {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.section-title {
  font-family: var(--h1-bold-font-family);
  font-size: var(--h1-bold-font-size);
  font-weight: var(--h1-bold-font-weight);
  color: #0e162b;
  text-align: center;
}

.section-subtitle {
  font-family: var(--body-large-regular-font-family);
  font-size: var(--body-large-regular-font-size);
  font-weight: var(--body-large-regular-font-weight);
  color: #272c2d;
  text-align: center;
}

.properties-wrapper {
  position: relative;
  max-width: 1272px;
  width: 100%;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}

.property-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.property-image {
  position: relative;
  width: 100%;
  height: 288px;
  background: url('figmaAssets/image----------------2.png') center/cover;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.property-fav {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
}

.property-badge-row {
  display: flex;
  width: 370px;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  top: 16px;
  left: calc(50% - 185px);
}

.badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  background: #2b7fff;
  border-radius: 8px;
  color: #fff;
  font-family: var(--caption-medium-font-family);
  font-size: var(--caption-medium-font-size);
  font-weight: var(--caption-medium-font-weight);
  white-space: nowrap;
  direction: rtl;
}

.badge-blue img {
  width: 14px;
  height: 14px;
}

.price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  border: 1px solid rgba(255,254,254,0.5);
}

.price-label {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #61738d;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  direction: rtl;
}

.price-value {
  font-family: "Inter", Helvetica;
  font-weight: 900;
  color: #0e162b;
  font-size: 18px;
  letter-spacing: -0.44px;
  line-height: 18px;
  white-space: nowrap;
  direction: rtl;
}

.property-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 23px;
  padding: 24px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--SHD);
}

.property-title {
  font-family: "Inter", Helvetica;
  font-weight: 900;
  color: #0e162b;
  font-size: 20px;
  letter-spacing: -0.45px;
  line-height: 25px;
  white-space: nowrap;
  direction: rtl;
}

.property-subtitle-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.property-subtitle-text {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #61738d;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  white-space: nowrap;
  direction: rtl;
}

.dot-separator {
  width: 4px;
  height: 4px;
  background: var(--foundation-brownbrown-500);
  border-radius: 50%;
}

.property-info-row {
  display: flex;
  height: 16px;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
}

.info-item {
  display: inline-flex;
  height: 16px;
  align-items: center;
  gap: 4px;
}

.info-item span {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #90a1b8;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  direction: rtl;
}

.info-item svg {
  width: 14px;
  height: 14px;
  stroke: #90a1b8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-divider {
  width: 1px;
  height: 12px;
  background: #e2e8f0;
}

.units-bar {
  display: flex;
  flex-direction: column;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  width: 100%;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #f0f4f9;
}

.units-bar-header {
  display: flex;
  height: 16px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.units-sold {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: var(--foundation-brownbrown-500);
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  direction: rtl;
}

.units-status-label {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #314157;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  direction: rtl;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 90%;
  background: var(--foundation-brownbrown-500);
  border-radius: 999px;
}

.feature-boxes {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.feature-box {
  display: flex;
  flex-direction: column;
  height: 89px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  border-radius: 16px;
  border: 0.5px solid #c7b5a7;
}

.feature-box svg {
  width: 20px;
  height: 20px;
  stroke: #314157;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-box-value {
  font-family: var(--body-large-medium-font-family);
  font-size: var(--body-large-medium-font-size);
  font-weight: var(--body-large-medium-font-weight);
  color: #314157;
}

.feature-box-label {
  font-family: var(--caption-medium-font-family);
  font-size: var(--caption-medium-font-size);
  font-weight: var(--caption-medium-font-weight);
  color: #737373;
  white-space: nowrap;
  direction: rtl;
}

.btn-units {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 24px;
  background: var(--foundation-brownbrown-500);
  border-radius: 8px;
  color: #f2f3f3;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
  direction: rtl;
  transition: background 0.2s;
}

.btn-units:hover {
  background: var(--foundation-brownbrown-700);
}

.btn-units img {
  width: 16.24px;
  height: 16.24px;
}

.nav-arrow-btn {
  position: absolute;
  top: 231px;
  left: 14px;
  width: 46px;
  height: 46px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-arrow-btn img {
  width: 100%;
  height: 100%;
}

/* ======== SERVICES SECTION ======== */
.services-section {
  position: relative;
  padding: 120px 80px 180px;
  background: #181a20;
  overflow: hidden;
  min-height: 700px;
}

.services-grid-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  opacity: 0.06;
}

.services-grid-row {
  display: flex;
  width: 100%;
}

.services-grid-cell {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border: 0.5px solid rgba(255,255,255,0.3);
}

.services-content {
  position: relative;
  display: flex;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  gap: 80px;
  z-index: 2;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 48px;
  flex: 1;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.service-card img {
  height: 36px;
  opacity: 0.9;
}

.service-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.service-card-title {
  font-family: var(--body-large-medium-font-family);
  font-size: var(--body-large-medium-font-size);
  font-weight: var(--body-large-medium-font-weight);
  color: #fff;
  direction: rtl;
  text-align: center;
}

.service-card-desc {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 22px;
  direction: rtl;
  text-align: center;
  max-width: 280px;
}

.services-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  max-width: 400px;
  flex-shrink: 0;
}

.services-info h2 {
  font-family: var(--h-2-font-family);
  font-size: 28px;
  font-weight: var(--h-2-font-weight);
  color: #fff;
  direction: rtl;
  text-align: right;
  line-height: 1.4;
}

.services-info p {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 24px;
  direction: rtl;
  text-align: right;
}

/* ======== MAP SECTION ======== */
.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  padding: 40px 0;
}

.map-card {
  display: flex;
  flex-direction: column;
  max-width: 1462px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px;
  background: var(--foundation-brownbrown-50);
  border-radius: 24px;
}

.map-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.map-title {
  font-family: "Tajawal", Helvetica;
  font-weight: 700;
  color: #101727;
  font-size: 34px;
  line-height: 1.3;
  text-align: right;
}

.map-desc {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6b7280;
  font-size: 16px;
  line-height: 26px;
  text-align: right;
}

.map-container {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 8px 10px -6px rgba(0,0,0,0.1), 0px 20px 25px -5px rgba(0,0,0,0.1);
  padding: 1px;
}

.map-area {
  position: relative;
  width: 100%;
  height: 598px;
  background: #dddddd;
  overflow: hidden;
  border-radius: 24px;
}

.map-tiles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  background-size: cover;
  background-position: center;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.map-pin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--foundation-brownbrown-500);
  border-radius: 8px;
  color: #fff;
  font-family: var(--body-large-medium-font-family);
  font-size: var(--body-large-medium-font-size);
  font-weight: var(--body-large-medium-font-weight);
  white-space: nowrap;
  direction: rtl;
}

.map-pin img {
  width: 17.32px;
  height: 15px;
  margin-top: -2px;
}

.pin-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 4px;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.pin-dot.green { background: #00c850; }
.pin-dot.yellow { background: #f0b000; }
.pin-dot.blue { background: #2b7fff; }

.map-controls-left {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.map-layers-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 4px;
  border: 2px solid rgba(0,0,0,0.2);
  cursor: pointer;
}

.map-zoom {
  display: flex;
  flex-direction: column;
  width: 34px;
  height: 64px;
  padding: 2px;
  border-radius: 4px;
  border: 2px solid rgba(0,0,0,0.2);
}

.map-zoom button {
  display: flex;
  flex-direction: column;
  height: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  font-family: "Monaco", monospace;
  font-size: 22px;
  color: #000;
  line-height: 30px;
  cursor: pointer;
}

.map-zoom button:first-child {
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid #ccc;
}

.map-zoom button:last-child {
  border-radius: 0 0 2px 2px;
}

.map-filters {
  position: absolute;
  top: 19px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.map-status-dots {
  display: inline-flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  border: 1px solid #f2f4f6;
  box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.1), 0px 1px 3px rgba(0,0,0,0.1);
}

.status-dot-wrap {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid;
}

.status-dot-wrap.green { border-color: #00c850; background: #f0fdf4; }
.status-dot-wrap.yellow { border-color: #f0b000; background: #fefce8; }
.status-dot-wrap.blue { border-color: #2b7fff; background: #eff6ff; }

.status-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot-wrap.green .status-dot-inner { background: #00c850; }
.status-dot-wrap.yellow .status-dot-inner { background: #f0b000; }
.status-dot-wrap.blue .status-dot-inner { background: #2b7fff; }

.status-label-divider {
  width: 32px;
  height: 16px;
  border-left: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}

.status-label-divider span {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #99a1ae;
  font-size: 12px;
  white-space: nowrap;
  direction: rtl;
}

.map-category-tabs {
  display: flex;
  width: auto;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  border: 1px solid #f2f4f6;
  box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.1), 0px 1px 3px rgba(0,0,0,0.1);
}

.map-tab {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #495565;
  font-size: 14px;
  text-align: center;
  letter-spacing: -0.15px;
  line-height: 20px;
  white-space: nowrap;
  direction: rtl;
  cursor: pointer;
}

.map-tab.active {
  background: #101828;
  color: #fff;
  box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.1), 0px 1px 3px rgba(0,0,0,0.1);
}

.map-expand-btn {
  position: absolute;
  top: 32px;
  left: 70px;
  width: 46px;
  height: 46px;
}

.map-expand-btn img {
  width: 100%;
  height: 100%;
}

.map-legend {
  position: absolute;
  bottom: 19px;
  right: 12px;
  display: inline-flex;
  flex-direction: column;
  padding: 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  border: 1px solid #f2f4f6;
  box-shadow: 0px 4px 6px -4px rgba(0,0,0,0.1), 0px 10px 15px -3px rgba(0,0,0,0.1);
  z-index: 10;
}

.legend-item {
  display: flex;
  height: 16px;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.legend-item + .legend-item {
  margin-top: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.blue { background: #2b7fff; }
.legend-dot.yellow { background: #f0b000; }
.legend-dot.green { background: #00c850; }

.legend-item span {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #495565;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  direction: rtl;
}

.map-link {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  white-space: nowrap;
  direction: rtl;
}

.map-link .gray { color: #697282; }
.map-link .brown { color: #ac907b; text-decoration: underline; }

/* ======== DOWNLOAD APP SECTION ======== */
.download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 80px 0 0;
  background: linear-gradient(180deg, rgba(137,123,113,1) 0%, rgba(172,144,123,1) 100%);
  overflow: hidden;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 0 40px;
}

.download-text-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.download-title {
  width: 100%;
  max-width: 850px;
  font-family: var(--h-2-font-family);
  font-size: 42px;
  font-weight: var(--h-2-font-weight);
  color: var(--light-text-color);
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 1.4;
  direction: rtl;
}

.download-subtitle {
  font-family: var(--list-font-family);
  font-size: 18px;
  font-weight: var(--list-font-weight);
  color: rgba(255,255,255,0.85);
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 28px;
  direction: rtl;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.store-btn {
  position: relative;
  width: 156px;
  height: 52px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #a6a6a6;
  display: block;
  cursor: pointer;
}

.store-btn img.store-icon {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 28px;
  height: 32px;
}

.store-btn img.apple-icon {
  width: 26px;
  height: 32px;
}

.store-btn .store-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  position: absolute;
  top: 7px;
  left: 48px;
}

.store-btn .store-text-small {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #fff;
  font-size: 11px;
}

.store-btn .store-text-img {
  width: 90px;
  height: 18px;
}

.store-btn .apple-text {
  display: flex;
  flex-direction: column;
  width: 100px;
  align-items: flex-start;
  position: absolute;
  top: calc(50% - 17px);
  left: 48px;
}

.store-btn .apple-text-small {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 10px;
  line-height: 12px;
}

.store-btn .apple-text-large {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.47px;
  line-height: 24px;
}

.phone-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 580px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.phone-carousel-strip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  height: 100%;
  width: max-content;
}

.carousel-slot {
  flex-shrink: 0;
  overflow: hidden;
}

.slot-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #e8ddd0;
  border-radius: 20px;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.slot-img.slide-out {
  transform: translateX(100%);
}

.slot-img.slide-in-prep {
  transform: translateX(-100%);
  transition: none;
}

.slot-img.slide-in {
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.slot-far-left,
.slot-far-right {
  width: 200px;
  height: 420px;
  opacity: 0.6;
  border-radius: 20px;
  overflow: hidden;
}

.slot-near-left,
.slot-near-right {
  width: 230px;
  height: 480px;
  opacity: 0.85;
  border-radius: 22px;
  overflow: hidden;
}

.slot-center {
  width: 270px;
  height: 550px;
  z-index: 5;
}

.center-phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}

.center-phone-frame .slot-img-wrapper {
  border-radius: 28px;
  overflow: hidden;
}

.center-phone-frame .slot-img {
  border-radius: 28px;
}

.center-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 45px;
  z-index: 10;
}

/* ======== PREMIUM UNITS ======== */
.premium-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 80px;
}

.premium-card {
  max-width: 1462px;
  width: 100%;
  background: var(--foundation-brownbrown-50);
  border-radius: 24px;
  overflow: hidden;
  padding: 60px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.premium-title {
  font-family: "Tajawal", Helvetica;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  text-align: right;
  direction: rtl;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  align-items: end;
}

.premium-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.premium-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.premium-item-left {
  height: 420px;
}

.premium-item-center {
  height: 500px;
}

.premium-item-right {
  height: 420px;
}

.premium-item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  direction: rtl;
  text-align: right;
}

.premium-item-text h3 {
  font-family: "Tajawal", Helvetica;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.premium-item-text p {
  font-family: "Inter", Helvetica;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 20px;
}

/* Premium animation */
.premium-item-left {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.premium-item-center {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.premium-item-right {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.premium-title {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.premium-card.animate .premium-title,
.premium-card.animate .premium-item-left,
.premium-card.animate .premium-item-center,
.premium-card.animate .premium-item-right {
  opacity: 1;
  transform: translate(0, 0);
}

/* ======== NEWS SECTION ======== */
.news-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px;
  background: var(--foundation-brownbrown-50);
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1462px;
  width: 100%;
}

.news-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.news-title-text {
  font-family: 'Almarai', Helvetica;
  font-size: 48px;
  font-weight: 700;
  color: #1a202c;
  line-height: 48px;
}

.news-subtitle-text {
  font-family: 'Almarai', Helvetica;
  color: #64748b;
  font-size: 18px;
  line-height: 28px;
}

.news-scroll {
  display: flex;
  gap: 24px;
  max-width: 1462px;
  width: 100%;
  overflow-x: auto;
}

.news-scroll::-webkit-scrollbar {
  display: none;
}

.news-card {
  width: 322px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-card-image-wrapper {
  position: relative;
  width: 322px;
  height: 256px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  width: 290px;
  justify-content: space-between;
  align-items: center;
}

.badge-brown {
  display: inline-flex;
  align-items: center;
  padding: 6px 15px;
  background: #a68b6c;
  border-radius: 999px;
  color: #fff;
  font-family: 'Almarai', Helvetica;
  font-size: 14px;
  line-height: 20px;
}

.badge-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 15px;
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  color: #354152;
  font-family: 'Almarai', Helvetica;
  font-size: 14px;
  line-height: 20px;
}

.news-card-body {
  height: 261px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  border-radius: 0 0 24px 24px;
  background: #fff;
}

.news-card-body-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.news-card-title {
  font-family: 'Almarai', Helvetica;
  font-weight: 700;
  color: #1e293b;
  font-size: 20px;
  line-height: 27.5px;
  width: 192px;
  direction: rtl;
  text-align: right;
}

.news-card-desc {
  font-family: 'Almarai', Helvetica;
  font-weight: 400;
  color: #64748b;
  font-size: 14px;
  line-height: 22.8px;
  width: 256px;
  direction: rtl;
  text-align: right;
}

.news-card-date {
  font-family: 'Almarai', Helvetica;
  font-weight: 400;
  color: #94a3b8;
  font-size: 14px;
  line-height: 20px;
  width: 84px;
  direction: rtl;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  direction: rtl;
  font-family: 'Almarai', Helvetica;
  font-weight: 700;
  color: #7e6e58;
  font-size: 16px;
  line-height: 24px;
}

.news-read-more img {
  width: 20px;
  height: 20px;
}

.news-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-chevron-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-chevron-btn svg {
  width: 24px;
  height: 24px;
  stroke: #314157;
}

/* ======== TESTIMONIALS ======== */
.testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
  background: #fff;
}

.testimonials-title-block {
  display: flex;
  flex-direction: column;
  max-width: 598px;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.testimonials-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow-x: auto;
  width: 100%;
}

.testimonial-card {
  width: 613px;
  border-radius: 24px;
  padding: 40px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%), url('figmaAssets/content-3.png') center/cover;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.testimonial-star-rating {
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
}

.testimonial-star-rating svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  stroke: #fff;
}

.testimonial-rating-text {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
}

.testimonial-count {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
}

.testimonial-text {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  width: 533px;
  direction: rtl;
  text-align: right;
}

.testimonial-user {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.testimonial-name {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  direction: rtl;
}

.testimonial-role {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  direction: rtl;
}

.testimonials-nav-bottom {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
}

/* ======== CTA SECTION ======== */
.cta-section {
  position: relative;
  width: 100%;
  height: 564px;
  background: url('figmaAssets/rectangle-24.png') 100% 100% / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  max-width: 795px;
  width: 100%;
  align-items: center;
  gap: 36px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.cta-title {
  font-family: "Tajawal", Helvetica;
  font-weight: 700;
  color: #fff;
  font-size: 40px;
  text-align: center;
  line-height: 57px;
  direction: rtl;
  white-space: nowrap;
}

.cta-subtitle {
  font-family: "Public Sans", Helvetica;
  font-weight: 400;
  color: var(--foundation-brownbrown-50);
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  direction: rtl;
}

.cta-btn {
  width: 212px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--foundation-brownbrown-50);
  border-radius: 8px;
  color: var(--foundation-brownbrown-50);
  font-family: var(--body-large-medium-font-family);
  font-size: var(--body-large-medium-font-size);
  font-weight: var(--body-large-medium-font-weight);
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  direction: rtl;
}

.cta-btn:hover {
  background: var(--foundation-brownbrown-50);
  color: var(--foundation-brownbrown-500);
}

/* ======== FOOTER ======== */
.footer {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.footer-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1760px;
  margin: 0 auto;
  padding: 60px 80px 40px;
  direction: rtl;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  max-width: 337px;
}

.footer-brand-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

.footer-logo {
  width: 80px;
  height: 95px;
}

.footer-brand-desc {
  font-family: var(--body-regular-400-font-family);
  font-size: var(--body-regular-400-font-size);
  font-weight: var(--body-regular-400-font-weight);
  color: var(--gray-500);
  line-height: var(--body-regular-400-line-height);
  direction: rtl;
  text-align: right;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--foundation-brownbrown-100);
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.social-btn:hover {
  background: var(--foundation-brownbrown-300);
  transform: translateY(-2px);
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.footer-col-title {
  font-family: var(--body-large-medium-font-family);
  font-size: var(--body-large-medium-font-size);
  font-weight: var(--body-large-medium-font-weight);
  color: #101213;
  direction: rtl;
  margin-bottom: 4px;
}

.footer-col-link {
  font-family: var(--body-large-regular-font-family);
  font-size: var(--body-large-regular-font-size);
  font-weight: var(--body-large-regular-font-weight);
  color: #6e7272;
  direction: rtl;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col-link:hover {
  color: var(--foundation-brownbrown-500);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-label span {
  font-family: "Tajawal", Helvetica;
  font-weight: 400;
  color: #525657;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  direction: rtl;
}

.footer-contact-label img {
  width: 18px;
  height: 18px;
}

.footer-contact-value {
  font-family: var(--body-large-regular-font-family);
  font-size: var(--body-large-regular-font-size);
  font-weight: var(--body-large-regular-font-weight);
  color: #525657;
  text-align: right;
  direction: rtl;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 80px;
  border-top: 1px solid rgba(0,0,0,0.1);
  max-width: 1760px;
  margin: 0 auto;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  direction: rtl;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-text {
  font-family: var(--body-regular-font-family);
  font-size: var(--body-regular-font-size);
  font-weight: var(--body-regular-font-weight);
  color: #9c9e9e;
  direction: rtl;
}

/* ======== MOBILE MENU BUTTON ======== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  padding: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.menu-open .mobile-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.menu-open .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .mobile-menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======== MOBILE MENU OVERLAY & PANEL ======== */
.mobile-menu-overlay {
  display: none;
}

.mobile-menu-panel {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

.mobile-menu-panel .nav-items {
  display: flex;
}

.mobile-menu-panel .nav-actions {
  display: flex;
}

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

.mobile-menu-scroll {
  display: contents;
}

/* ======== RESPONSIVE: TABLET (max-width: 1024px) ======== */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 104;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .navbar.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-panel {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(14, 22, 43, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 105;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar.menu-open .mobile-menu-panel {
    right: 0;
  }

  .mobile-menu-scroll {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 90px 28px 40px;
    overflow-y: auto;
    gap: 0;
  }

  .mobile-menu-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 16px 0;
    flex-shrink: 0;
  }

  .navbar {
    padding: 0 24px;
    height: 64px;
    top: 16px;
  }

  .navbar.scrolled {
    top: 0;
  }

  .nav-items {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .nav-item {
    width: 100%;
    justify-content: flex-end;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown .nav-item {
    justify-content: flex-end;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: unset;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: none;
    padding: 0;
    z-index: auto;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: opacity 0.25s ease, max-height 0.3s ease, visibility 0.25s ease, padding 0.25s ease;
  }

  .nav-item-dropdown:hover .nav-dropdown-menu {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transform: none;
  }

  .nav-item-dropdown.open .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    padding: 8px 0;
    margin-top: 4px;
  }

  .nav-dropdown-item {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    padding: 10px 18px;
    justify-content: flex-end;
  }

  .nav-dropdown-item:hover {
    background: rgba(255,255,255,0.08);
  }

  .nav-dropdown-item svg {
    stroke: rgba(255,255,255,0.7);
  }

  .nav-dropdown-divider {
    background: rgba(255,255,255,0.12);
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .nav-icons {
    justify-content: center;
  }

  .btn-request {
    width: 100%;
    text-align: center;
  }

  .nav-logo {
    width: 48px;
    height: 58px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 26px;
  }

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

  .hero-decor {
    width: 300px;
  }

  .about-section {
    padding: 60px 40px 80px;
  }

  .about-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .about-images {
    width: 100%;
    max-width: 500px;
    height: 280px;
  }

  .about-content {
    align-items: center;
  }

  .about-title {
    text-align: center;
    font-size: 28px;
  }

  .about-desc {
    text-align: center;
  }

  .about-label {
    align-self: center;
  }

  .about-features {
    align-items: center;
  }

  .about-feature-item {
    justify-content: center;
  }

  .stat-cards {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-contact {
    align-self: center;
  }

  .featured-section {
    padding: 60px 32px;
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .property-badge-row {
    width: calc(100% - 32px);
    left: 16px;
  }

  .services-section {
    padding: 80px 40px 120px;
    min-height: auto;
  }

  .services-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 48px;
  }

  .services-info {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .services-info h2 {
    text-align: center;
    font-size: 26px;
  }

  .services-info p {
    text-align: center;
  }

  .services-cards {
    gap: 40px 36px;
    max-width: 600px;
  }

  .map-section {
    padding: 40px 24px;
  }

  .map-card {
    padding: 48px 32px;
    border-radius: 16px;
  }

  .map-title {
    font-size: 28px;
  }

  .map-area {
    height: 400px;
  }

  .download-section {
    padding: 60px 0 0;
  }

  .download-title {
    font-size: 32px;
  }

  .phone-carousel-wrapper {
    height: 460px;
  }

  .slot-far-left,
  .slot-far-right {
    width: 140px;
    height: 320px;
  }

  .slot-near-left,
  .slot-near-right {
    width: 170px;
    height: 380px;
  }

  .slot-center {
    width: 220px;
    height: 440px;
  }

  .premium-section {
    padding: 60px 32px;
  }

  .premium-card {
    padding: 40px 32px 48px;
  }

  .premium-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .premium-item-left,
  .premium-item-right {
    height: 320px;
  }

  .premium-item-center {
    height: 380px;
    grid-column: 1 / -1;
  }

  .premium-title {
    font-size: 28px;
  }

  .news-section {
    padding: 60px 32px;
  }

  .news-title-text {
    font-size: 36px;
    line-height: 1.2;
  }

  .news-card {
    width: 280px;
  }

  .news-card-image-wrapper {
    width: 100%;
    height: 220px;
  }

  .news-card-body {
    height: auto;
    min-height: 220px;
  }

  .news-card-title {
    width: auto;
  }

  .news-card-desc {
    width: auto;
  }

  .testimonials-section {
    padding: 60px 24px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 480px;
    padding: 32px;
    gap: 32px;
  }

  .testimonial-text {
    width: 100%;
  }

  .cta-section {
    height: 420px;
    padding: 0 24px;
  }

  .cta-title {
    font-size: 30px;
    line-height: 1.3;
    white-space: normal;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 40px 0;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-brand-desc {
    width: 100%;
  }

  .footer-bottom {
    padding: 30px 40px;
  }
}

/* ======== RESPONSIVE: MOBILE (max-width: 640px) ======== */
@media (max-width: 640px) {
  .navbar {
    padding: 0 16px;
    height: 56px;
    top: 8px;
  }

  .mobile-menu-panel {
    width: 100%;
  }

  .mobile-menu-scroll {
    padding: 80px 20px 30px;
  }

  .nav-logo {
    width: 40px;
    height: 48px;
  }

  .hero {
    height: auto;
    min-height: 480px;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.35;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 24px;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    padding: 40px 20px;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-projects,
  .btn-download-hero {
    width: 100%;
    text-align: center;
  }

  .hero-decor {
    width: 200px;
  }

  .about-section {
    padding: 48px 20px 60px;
  }

  .about-inner {
    gap: 32px;
  }

  .about-images {
    height: 220px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .stat-cards {
    gap: 16px;
  }

  .stat-card {
    width: 160px;
    height: 110px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 13px;
  }

  .btn-contact {
    width: 100%;
  }

  .featured-section {
    padding: 48px 16px;
    gap: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .property-badge-row {
    width: calc(100% - 32px);
    left: 16px;
  }

  .services-section {
    padding: 60px 20px 80px;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-info h2 {
    font-size: 22px;
  }

  .map-section {
    padding: 32px 12px;
  }

  .map-card {
    padding: 32px 16px;
    border-radius: 12px;
  }

  .map-title {
    font-size: 24px;
  }

  .map-desc {
    font-size: 14px;
  }

  .map-area {
    height: 300px;
    border-radius: 12px;
  }

  .map-container {
    border-radius: 12px;
  }

  .map-filters {
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
  }

  .download-section {
    padding: 48px 0 0;
    gap: 36px;
  }

  .download-title {
    font-size: 24px;
  }

  .download-subtitle {
    font-size: 15px;
  }

  .store-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .phone-carousel-wrapper {
    height: 380px;
  }

  .slot-far-left,
  .slot-far-right {
    display: none;
  }

  .slot-near-left,
  .slot-near-right {
    width: 120px;
    height: 300px;
  }

  .slot-center {
    width: 180px;
    height: 360px;
  }

  .center-phone-frame {
    border-radius: 28px;
    padding: 6px;
  }

  .center-phone-frame .slot-img-wrapper,
  .center-phone-frame .slot-img {
    border-radius: 22px;
  }

  .center-phone-notch {
    width: 70px;
    height: 20px;
    top: 8px;
  }

  .premium-section {
    padding: 48px 16px;
  }

  .premium-card {
    padding: 32px 16px 40px;
    border-radius: 16px;
  }

  .premium-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium-item-left,
  .premium-item-right {
    height: 260px;
  }

  .premium-item-center {
    height: 300px;
    grid-column: auto;
  }

  .premium-title {
    font-size: 24px;
  }

  .news-section {
    padding: 48px 16px;
    gap: 32px;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }

  .news-title-text {
    font-size: 28px;
    line-height: 1.3;
  }

  .news-card {
    width: 260px;
  }

  .news-card-image-wrapper {
    height: 180px;
  }

  .news-card-body {
    padding: 16px;
    min-height: 200px;
  }

  .testimonials-section {
    padding: 48px 16px;
  }

  .testimonial-card {
    width: 100%;
    min-width: 0;
    padding: 24px;
    gap: 24px;
  }

  .testimonials-grid {
    flex-direction: column;
    gap: 20px;
    padding: 0 4px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 21px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .cta-section {
    height: 360px;
    padding: 0 16px;
  }

  .cta-title {
    font-size: 24px;
    line-height: 1.4;
    white-space: normal;
  }

  .cta-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .cta-btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    padding: 32px 20px 0;
  }

  .footer-col {
    width: 100%;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-brand-desc {
    width: 100%;
    font-size: 14px;
  }

  .footer-bottom {
    padding: 24px 20px;
  }

  .footer-bottom-inner {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 16px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }
}

/* ======== RESPONSIVE: SMALL MOBILE (max-width: 380px) ======== */
@media (max-width: 380px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .stat-cards {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 200px;
  }

  .about-title {
    font-size: 22px;
  }

  .section-title {
    font-size: 24px;
  }

  .download-title {
    font-size: 22px;
  }

  .slot-near-left,
  .slot-near-right {
    width: 90px;
    height: 240px;
  }

  .slot-center {
    width: 160px;
    height: 320px;
  }
}
