.elementor-2089 .elementor-element.elementor-element-7969e7b{--display:flex;}@media(min-width:768px){.elementor-2089 .elementor-element.elementor-element-7969e7b{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-74c6da2 */*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --dark: #0A0A0A;
  --dark2: #141414;
  --cream: #F8F3EA;
  --white: #FFFFFF;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--dark);
  direction: rtl;
  -webkit-tap-highlight-color: transparent;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.top-bar-phones {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
  direction: ltr;
  white-space: nowrap;
}
.phone-item:hover, .phone-item:active { color: var(--gold); }

.phone-icon { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.social-link {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  color: var(--gold);
  text-decoration: none;
}
.social-link:hover, .social-link:active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.social-link svg { width: 13px; height: 13px; fill: currentColor; }

/* ===== MAIN HEADER ===== */
.main-header {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1208 50%, #0A0A0A 100%);
  position: relative;
  overflow: hidden;
}

.main-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.header-deco-top, .header-deco-bottom {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

/* ===== LOGO ===== */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-emblem { width: 64px; height: 64px; flex-shrink: 0; }
.logo-emblem img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
  mix-blend-mode: lighten;
}

.logo-text { line-height: 1.2; }

.logo-ar {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  display: block;
}
.logo-ar span { color: var(--gold); }

.logo-en {
  font-family: 'Playfair Display', serif;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* ===== DESKTOP NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  display: inline-block;
}
.nav-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  flex-shrink: 0;
  min-width: 44px; min-height: 44px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  pointer-events: none;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  opacity: 0;
  transition: opacity 0.35s;
  backdrop-filter: blur(4px);
}

.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--dark2);
  border-left: 1px solid rgba(201,168,76,0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.open { pointer-events: all; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-shrink: 0;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.drawer-logo img {
  width: 46px; height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.3));
  mix-blend-mode: lighten;
}
.drawer-logo-text { font-size: 16px; font-weight: 900; color: var(--white); }
.drawer-logo-text span { color: var(--gold); }

.drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: none;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.drawer-close:hover, .drawer-close:active { background: var(--gold); color: var(--dark); }

/* Drawer Nav Links */
.drawer-nav { padding: 8px 0; flex: 1; }

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
  color: var(--cream);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  transition: all 0.25s;
  position: relative;
}
.drawer-nav a::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s;
  border-radius: 3px 0 0 3px;
}
.drawer-nav a:hover, .drawer-nav a:active {
  background: rgba(201,168,76,0.07);
  color: var(--gold-light);
  padding-right: 30px;
}
.drawer-nav a:hover::before, .drawer-nav a:active::before { transform: scaleY(1); }

.drawer-icon { width: 20px; height: 20px; fill: var(--gold); opacity: 0.75; flex-shrink: 0; }

/* Book Button */
.drawer-book-btn {
  margin: 16px 20px;
  display: block;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-family: 'Tajawal', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: all 0.25s;
  flex-shrink: 0;
}
.drawer-book-btn:active { transform: scale(0.97); }

/* Drawer Phones */
.drawer-phones {
  padding: 14px 24px;
  border-top: 1px solid rgba(201,168,76,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.drawer-phones a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  direction: ltr;
  transition: color 0.2s;
}
.drawer-phones a:hover, .drawer-phones a:active { color: var(--gold); }
.drawer-phones svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* Drawer Socials */
.drawer-socials {
  padding: 14px 24px 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,168,76,0.1);
  flex-shrink: 0;
}
.drawer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.25s;
}
.drawer-social:hover, .drawer-social:active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.drawer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 520px) {
  .top-bar { padding: 6px 12px; }
  .header-inner { padding: 12px; }
  .logo-emblem { width: 50px; height: 50px; }
  .logo-ar { font-size: 17px; }
  .logo-en { font-size: 9px; letter-spacing: 2px; }
  .phone-item:last-child { display: none; }
  .social-link { width: 26px; height: 26px; }
  .social-link svg { width: 12px; height: 12px; }
}

/* ===== ANIMATION ===== */
@keyframes shimmer { 0%,100%{opacity:.5} 50%{opacity:1} }
.header-deco-top { animation: shimmer 4s ease-in-out infinite; }
.header-deco-bottom { animation: shimmer 4s ease-in-out infinite 2s; }/* End custom CSS */