@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800&family=Rubik:wght@400;500;700;800&display=swap");

:root {
  --brand: #0f766e;
  --brand-dark: #115e59;
  --surface: #ffffff;
  --surface-soft: #f3f7f7;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
  font-family: "Assistant", "Segoe UI", Arial, sans-serif;
  color: var(--text-main);
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.brand-logo {
  font-family: "Rubik", "Assistant", "Segoe UI", Arial, sans-serif;
}

html[dir="rtl"] input,
html[dir="rtl"] button,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] .btn,
html[dir="rtl"] .nav-menu a {
  font-family: "Assistant", "Segoe UI", Arial, sans-serif;
}

a {
  color: var(--brand);
}

a:hover {
  color: var(--brand-dark);
}

.header-modern {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
  padding: 12px 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main) !important;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-menu > ul {
  display: flex;
  flex-direction: row-reverse;
}

.nav-menu > ul > li {
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  color: var(--text-main) !important;
  font-weight: 500;
  font-size: 1rem;
}

.header-phone {
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

html[dir="rtl"] .mobile-nav-toggle {
  left: 15px;
  right: auto;
}

#hero {
  min-height: 92vh;
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.7), rgba(15, 23, 42, 0.55)), url("../../2342342341.png") center center/cover no-repeat;
}

#hero:before {
  background: transparent;
}

#hero .hero-container {
  text-align: right;
  align-items: flex-start;
  max-width: 700px;
  margin-inline-end: auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-solid,
.btn-outline-light {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
}

.btn-solid {
  background: #fff;
  color: var(--brand-dark) !important;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff !important;
}

.section-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.highlight-list,
.feature-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li,
.feature-list li,
.footer-links li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-soft);
}

.highlight-list li:last-child,
.feature-list li:last-child,
.footer-links li:last-child {
  border-bottom: none;
}

.units-grid {
  margin-top: 25px;
}

.unit-card {
  height: 100%;
}

.unit-preview {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.unit-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.review-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 22px;
  height: 100%;
}

.faq-item {
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.faq-item h5 {
  margin-bottom: 8px;
}

.contact-box {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}

.contact-box .form-control {
  border-radius: 12px;
  min-height: 46px;
}

.contact-box textarea.form-control {
  min-height: 130px;
}

.contact-box button[type="submit"] {
  border: 0;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
}

.whatsapp-cta {
  display: inline-block;
  margin-bottom: 14px;
  margin-left: 8px;
  background: #25d366;
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

.whatsapp-cta:hover {
  background: #1fae53;
}

.waze-cta {
  display: inline-block;
  margin-bottom: 14px;
  background: #33ccff;
  color: #083344 !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

.waze-cta:hover {
  background: #20b7ea;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border-soft);
  background: #fff;
  padding: 40px 0 20px;
}

.footer-grid h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.footer-cta {
  display: inline-block;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  margin-top: 24px;
  padding-top: 16px;
  color: var(--text-muted);
}

.page-hero {
  padding-top: 130px;
  padding-bottom: 30px;
}

.gallery-wrap .carousel-item img {
  border-radius: 16px;
  max-height: 520px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .header-modern {
    padding: 10px 0;
  }

  #hero .hero-container {
    text-align: center;
    align-items: center;
    margin-inline-end: 0;
  }
}
