@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic/FrutigerLTArabic-Regular.woff2") format("woff2"),
       url("../fonts/FrutigerLTArabic/FrutigerLTArabic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic/FrutigerLTArabic-Medium.woff2") format("woff2"),
       url("../fonts/FrutigerLTArabic/FrutigerLTArabic-Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html,
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  font-family: "Frutiger LT Arabic", "Open Sans", Arial, sans-serif;
  direction: rtl;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: #1d2520;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.theme-taiba {
  background: #1d2520;
}

body.theme-taiba::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(29, 37, 32, 0.78), rgba(29, 37, 32, 0.78));
  pointer-events: none;
}

#bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.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;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.splash {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vh, 56px) 16px;
}

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
}

.brand-logo {
  height: 65px;
  width: auto;
  max-width: min(260px, 70vw);
  object-fit: contain;
}

.hero {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 860px;
}

.hero-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 35px);
}

.hero-subtitle {
  margin: 10px auto 0;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.9;
  opacity: 0.88;
}

.hero-description {
  margin: 14px auto 0;
  max-width: 900px;
  text-align: justify;
  text-justify: inter-word;
}

.hero-description p {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.9vw, 17px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  text-align-last: center;
}

.hero-description a {
  color: rgb(212, 175, 55);
  text-decoration: underline;
}

.interest-card {
  width: min(500px, 96vw);
  margin: 18px auto 0;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: rgba(17, 22, 19, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.interest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.interest-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.interest-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.interest-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgb(212, 175, 55);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.interest-form {
  display: grid;
  gap: 12px;
}

.field {
  position: relative;
}

.field i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212, 175, 55, 0.85);
  font-size: 14px;
  pointer-events: none;
}

.field input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  direction: rtl;
  text-align: right;
  padding: 0 42px 0 14px;
  outline: none;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.field input:focus {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}

.note {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.interest-btn {
  height: 46px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(212, 175, 55, 0.75));
  color: #1d2520;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.interest-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.45);
  filter: brightness(1.02);
}

.interest-divider {
  margin-top: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.28), transparent);
}


.booking-cta-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.open-interest-modal {
  min-width: min(320px, 80vw);
  justify-content: center;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px);
}

.privacy-note {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.interest-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  background: rgba(10, 12, 11, 0.42);
}

.interest-modal-overlay.is-open {
  display: flex;
}

.interest-modal-card {
  position: relative;
  overflow: visible;
}

.modal-close-btn {
  position: absolute;
  top: -48px;
  left: -4px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  background: rgba(17, 22, 19, 0.92);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open > :not(.interest-modal-overlay):not(script):not(noscript) {
  filter: blur(6px);
}

.social-section {
  text-align: center;
  z-index: 3;
  position: relative;
}

.social-title {
  font-size: 15px;
  margin: 0 0 18px;
  color: #fff;
  font-weight: 500;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #fff;
  color: #1d2520;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.footer-simple {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 18px 16px 22px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

input,
textarea,
select,
button {
  font-family: "Frutiger LT Arabic", Arial, sans-serif !important;
}

@media (max-width: 560px) {
  .splash {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .interest-card {
    width: 100%;
    padding: 18px 16px 14px;
    border-radius: 16px;
  }

  .interest-head {
    gap: 8px;
  }

  .interest-title {
    font-size: 15px;
  }

  .interest-badge {
    font-size: 11px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .interest-btn {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    height: 65px;
  }

  .hero-description p {
    font-size: 14px;
    line-height: 1.85;
  }

  .open-interest-modal {
    min-width: 100%;
  }
}

