/* ═══ header ═══ */
/* ═══════════════════════════════════════════
   CSS Variables - Royal Identity
═══════════════════════════════════════════ */
:root {
  --royal-blue: #0a2351;
  --royal-blue-light: #0e2d66;
  --royal-blue-dark: #061a3d;
  --gold: #d4af37;
  --gold-hover: #e8c84a;
  --gold-dark: #b8961f;
  --bg-cool: #f8fafd;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 35, 81, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 35, 81, 0.12);
  --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
}

.enjaz-header *, .enjaz-topbar *, .enjaz-nav-mobile *, .enjaz-mobile-overlay * {
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════
   Top Bar
═══════════════════════════════════════════ */
.enjaz-topbar {
  background: var(--royal-blue-dark);
  padding: clamp(0.35rem, 1vw, 0.5rem) 0;
  direction: rtl;
  font-family: var(--font-ar);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.enjaz-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.enjaz-topbar-info {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.enjaz-topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  text-decoration: none;
  transition: color var(--transition);
}

.enjaz-topbar-item:hover {
  color: var(--gold);
}

.enjaz-topbar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.enjaz-topbar-hours {
  color: var(--gold);
  font-size: clamp(0.7rem, 1.5vw, 0.78rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.enjaz-topbar-hours svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ═══════════════════════════════════════════
   Main Header
═══════════════════════════════════════════ */
.enjaz-header-main {
  background: var(--royal-blue);
  padding: clamp(0.6rem, 1.5vw, 0.9rem) 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  direction: rtl;
  font-family: var(--font-ar);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}

.enjaz-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ═══════════════════════════════════════════
   Logo
═══════════════════════════════════════════ */
.enjaz-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.enjaz-logo-icon {
  width: clamp(38px, 5vw, 50px);
  height: clamp(38px, 5vw, 50px);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition);
}

.enjaz-logo:hover .enjaz-logo-icon {
  transform: scale(1.05) rotate(-2deg);
}

.enjaz-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--royal-blue-dark);
}

.enjaz-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.enjaz-logo-title {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.enjaz-logo-title span {
  color: var(--gold);
}

.enjaz-logo-subtitle {
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   Desktop Navigation
═══════════════════════════════════════════ */
.enjaz-nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 1.5vw, 0.8rem);
}

.enjaz-nav-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 600;
  padding: 0.45rem clamp(0.5rem, 1vw, 0.85rem);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}

.enjaz-nav-link:hover,
.enjaz-nav-link.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.enjaz-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.enjaz-nav-link:hover::after,
.enjaz-nav-link.active::after {
  width: 60%;
}

/* Dropdown */
.enjaz-nav-dropdown {
  position: relative;
}

.enjaz-nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.enjaz-nav-dropdown-toggle svg.chevron-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--transition);
}

.enjaz-nav-dropdown:hover .enjaz-nav-dropdown-toggle svg.chevron-icon {
  transform: rotate(180deg);
}

.enjaz-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}

.enjaz-nav-dropdown:hover .enjaz-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.enjaz-dropdown-label {
  font-size: 0.68rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.8rem 0.25rem;
  opacity: 0.7;
  display: block;
}

.enjaz-dropdown-divider {
  height: 1px;
  background: rgba(10, 35, 81, 0.08);
  margin: 0.3rem 0.5rem;
}

.enjaz-nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  color: var(--royal-blue);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition);
}

.enjaz-nav-dropdown-menu a:hover {
  background: var(--bg-cool);
  color: var(--gold-dark);
  padding-right: 1.1rem;
}

.enjaz-nav-dropdown-menu a svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

.enjaz-nav-dropdown-menu a.hub-link {
  font-weight: 800;
  color: var(--royal-blue-dark);
  border-bottom: 1px solid rgba(10, 35, 81, 0.06);
  margin-bottom: 0.2rem;
}

.enjaz-nav-dropdown-menu a.hub-link svg {
  fill: var(--royal-blue);
}

/* ═══════════════════════════════════════════
   CTA Button - زر الاتصال الذهبي
═══════════════════════════════════════════ */
.enjaz-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--royal-blue-dark);
  text-decoration: none;
  font-size: clamp(0.8rem, 1.4vw, 0.92rem);
  font-weight: 800;
  padding: 0.6rem clamp(1rem, 2vw, 1.4rem);
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: var(--font-ar);
  direction: ltr;
}

.enjaz-cta-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.enjaz-cta-call:hover::before {
  left: 100%;
}

.enjaz-cta-call:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
}

.enjaz-cta-call:active {
  transform: translateY(0) scale(0.98);
}

.enjaz-cta-call svg {
  width: 18px;
  height: 18px;
  fill: var(--royal-blue-dark);
  animation: enjaz-ring 2s ease-in-out infinite;
}

@keyframes enjaz-ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(0deg); }
}

/* ═══════════════════════════════════════════
   Mobile Menu Toggle
═══════════════════════════════════════════ */
.enjaz-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  transition: all var(--transition);
  padding: 0;
}

.enjaz-burger:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

.enjaz-burger-line {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.enjaz-burger.open .enjaz-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.enjaz-burger.open .enjaz-burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.enjaz-burger.open .enjaz-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   Mobile Navigation
═══════════════════════════════════════════ */
.enjaz-nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 340px);
  height: 100vh;
  height: 100dvh;
  background: var(--royal-blue);
  z-index: 99999;
  flex-direction: column;
  padding: 1.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.enjaz-nav-mobile.open {
  right: 0;
}

.enjaz-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 26, 61, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.enjaz-mobile-overlay.open {
  opacity: 1;
}

.enjaz-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.enjaz-mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.enjaz-mobile-close:hover {
  background: rgba(212, 175, 55, 0.15);
}

.enjaz-mobile-close svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.enjaz-mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.enjaz-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  transition: all var(--transition);
}

.enjaz-mobile-nav-link:hover,
.enjaz-mobile-nav-link.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.enjaz-mobile-nav-link svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.enjaz-mobile-nav-link.hub-link {
  font-weight: 800;
  color: var(--white);
}

.enjaz-mobile-nav-link.sub-link {
  padding-right: 2.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.enjaz-mobile-nav-link.sub-link::before {
  content: '←';
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.75rem;
}

.enjaz-mobile-sub-label {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 0.8rem 0.3rem;
  opacity: 0.6;
  list-style: none;
}

.enjaz-mobile-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.1);
  margin: 0.5rem 0;
  list-style: none;
}

/* ═══════════════════════════════════════════
   Mobile CTA Group
═══════════════════════════════════════════ */
.enjaz-mobile-cta-group {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.enjaz-mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--royal-blue-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
  direction: ltr;
  font-family: var(--font-ar);
}

.enjaz-mobile-cta-call svg {
  width: 20px;
  height: 20px;
  fill: var(--royal-blue-dark);
}

.enjaz-mobile-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-ar);
  transition: all var(--transition);
}

.enjaz-mobile-cta-wa:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

.enjaz-mobile-cta-wa svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ═══════════════════════════════════════════
   Developer Credit
═══════════════════════════════════════════ */
.enjaz-dev-credit {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  text-align: center;
}

.enjaz-dev-credit-text {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  font-family: var(--font-ar);
  line-height: 1.8;
}

.enjaz-dev-credit-text strong {
  color: rgba(212, 175, 55, 0.6);
  font-weight: 700;
}

.enjaz-dev-credit-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.65rem;
  font-family: var(--font-ar);
  transition: color var(--transition);
  margin-top: 0.3rem;
}

.enjaz-dev-credit-wa:hover {
  color: #25d366;
}

.enjaz-dev-credit-wa svg {
  width: 13px;
  height: 13px;
  fill: #25d366;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   Responsive
═══════════════════════════════════════════ */
@media (max-width: 992px) {
  .enjaz-nav-desktop {
    display: none;
  }
  .enjaz-cta-call.desktop-only {
    display: none;
  }
  .enjaz-burger {
    display: flex;
  }
  .enjaz-nav-mobile {
    display: flex;
  }
}

@media (max-width: 480px) {
  .enjaz-topbar-info {
    gap: 0.5rem;
  }
  .enjaz-topbar-hours {
    display: none;
  }
}

@media print {
  .enjaz-topbar, .enjaz-header-main, .enjaz-nav-mobile, .enjaz-mobile-overlay { display: none !important; }
}

/* ═══ footer ═══ */
/* ═══════════════════════════════════════════
   Footer - Royal Theme
═══════════════════════════════════════════ */
.enjaz-footer *, .enjaz-footer *::before, .enjaz-footer *::after {
  box-sizing: border-box;
}

.enjaz-footer {
  background: var(--royal-blue, #0a2351);
  font-family: var(--font-ar, 'Cairo', 'Tajawal', sans-serif);
  direction: rtl;
  position: relative;
  overflow: hidden;
}

/* ═══ Decorative Top Border ═══ */
.enjaz-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold, #d4af37), transparent);
}

/* ═══ Background Pattern ═══ */
.enjaz-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   Footer CTA Banner
═══════════════════════════════════════════ */
.enjaz-footer-cta {
  background: linear-gradient(135deg, var(--royal-blue-dark, #061a3d), var(--royal-blue-light, #0e2d66));
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 1;
}

.enjaz-footer-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.enjaz-footer-cta-text {
  flex: 1;
  min-width: 280px;
}

.enjaz-footer-cta-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--white, #ffffff);
  margin: 0 0 0.4rem;
  line-height: 1.4;
}

.enjaz-footer-cta-title span {
  color: var(--gold, #d4af37);
}

.enjaz-footer-cta-desc {
  font-size: clamp(0.8rem, 1.5vw, 0.92rem);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

.enjaz-footer-cta-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.enjaz-footer-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold, #d4af37), var(--gold-dark, #b8961f));
  color: var(--royal-blue-dark, #061a3d);
  text-decoration: none;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 800;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: var(--font-ar, 'Cairo', sans-serif);
  direction: ltr;
}

.enjaz-footer-btn-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.enjaz-footer-btn-call:hover::before {
  left: 100%;
}

.enjaz-footer-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
}

.enjaz-footer-btn-call svg {
  width: 18px;
  height: 18px;
  fill: var(--royal-blue-dark, #061a3d);
}

.enjaz-footer-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: var(--font-ar, 'Cairo', sans-serif);
}

.enjaz-footer-btn-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.enjaz-footer-btn-wa svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ═══════════════════════════════════════════
   Footer Main Grid
═══════════════════════════════════════════ */
.enjaz-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

/* ═══ Column: About ═══ */
.enjaz-footer-about {
  padding-left: clamp(1rem, 2vw, 2rem);
}

.enjaz-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 1.2rem;
}

.enjaz-footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold, #d4af37), var(--gold-dark, #b8961f));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}

.enjaz-footer-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--royal-blue-dark, #061a3d);
}

.enjaz-footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.enjaz-footer-logo-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.enjaz-footer-logo-title span {
  color: var(--gold, #d4af37);
}

.enjaz-footer-logo-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

.enjaz-footer-desc {
  font-size: clamp(0.78rem, 1.3vw, 0.85rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin: 0 0 1.2rem;
}

.enjaz-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.enjaz-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.enjaz-footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold, #d4af37);
  flex-shrink: 0;
  opacity: 0.8;
}

.enjaz-footer-contact-item a,
.enjaz-footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.enjaz-footer-contact-item a:hover {
  color: var(--gold, #d4af37);
}

/* ═══ Column Shared Styles ═══ */
.enjaz-footer-col-title {
  font-size: clamp(0.88rem, 1.4vw, 0.95rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.1rem;
  padding-bottom: 0.7rem;
  position: relative;
}

.enjaz-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2.5px;
  background: var(--gold, #d4af37);
  border-radius: 2px;
}

.enjaz-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.enjaz-footer-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.78rem, 1.3vw, 0.85rem);
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.enjaz-footer-link:hover {
  color: var(--gold, #d4af37);
  padding-right: 0.5rem;
}

.enjaz-footer-link svg {
  width: 14px;
  height: 14px;
  fill: var(--gold, #d4af37);
  opacity: 0;
  transform: translateX(5px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.enjaz-footer-link:hover svg {
  opacity: 0.7;
  transform: translateX(0);
}

.enjaz-footer-link-hub {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.enjaz-footer-link-sub {
  padding-right: 1rem;
  font-size: clamp(0.74rem, 1.2vw, 0.8rem);
}

.enjaz-footer-link-label {
  font-size: 0.65rem;
  color: var(--gold, #d4af37);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
  padding: 0.6rem 0 0.15rem;
  display: block;
}

/* ═══ Working Hours ═══ */
.enjaz-footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.enjaz-footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.enjaz-footer-hours li:last-child {
  border-bottom: none;
}

.enjaz-footer-hours-day {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.enjaz-footer-hours-badge {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.enjaz-footer-hours-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: enjaz-pulse 2s ease-in-out infinite;
}

@keyframes enjaz-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ═══════════════════════════════════════════
   Footer Bottom Bar
═══════════════════════════════════════════ */
.enjaz-footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 1;
}

.enjaz-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.3rem) clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.enjaz-footer-copyright {
  font-size: clamp(0.7rem, 1.2vw, 0.78rem);
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.enjaz-footer-copyright a {
  color: rgba(212, 175, 55, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.enjaz-footer-copyright a:hover {
  color: var(--gold, #d4af37);
}

/* Developer Credit */
.enjaz-footer-dev {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.enjaz-footer-dev-text {
  font-size: clamp(0.65rem, 1.1vw, 0.72rem);
  color: rgba(255, 255, 255, 0.3);
}

.enjaz-footer-dev-text strong {
  color: rgba(212, 175, 55, 0.5);
  font-weight: 700;
}

.enjaz-footer-dev-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 0.65rem;
  transition: color 0.3s ease;
}

.enjaz-footer-dev-wa:hover {
  color: #25d366;
}

.enjaz-footer-dev-wa svg {
  width: 12px;
  height: 12px;
  fill: #25d366;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   Responsive
═══════════════════════════════════════════ */
@media (max-width: 992px) {
  .enjaz-footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .enjaz-footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .enjaz-footer-about {
    padding-left: 0;
  }
  .enjaz-footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .enjaz-footer-cta-buttons {
    justify-content: center;
    width: 100%;
  }
  .enjaz-footer-cta-buttons a {
    flex: 1;
    justify-content: center;
    min-width: 150px;
  }
  .enjaz-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
  .enjaz-footer-dev {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media print {
  .enjaz-footer { display: none !important; }
}

/* ═══ fab-buttons ═══ */
/* ===================================
   CSS Variables
   =================================== */
:root {
    --fab-size: 85px;
    --fab-icon: 48px;
    --wa-color: #25D366;
    --phone-color: #0077BE;
    --fab-shadow: 0 10px 25px rgba(0,0,0,0.15);
    --fab-shadow-hover: 0 15px 35px rgba(0,0,0,0.25);
    --fab-transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===================================
   FAB Container - Left Side
   =================================== */
.alsaif-fab-container-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

/* ===================================
   FAB Button Base
   =================================== */
.alsaif-fab-btn {
    width: var(--fab-size);
    height: var(--fab-size);
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--fab-shadow);
    transition: all var(--fab-transition);
    position: relative;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
}

.alsaif-fab-btn:hover {
    transform: scale(1.18) rotate(-8deg);
    box-shadow: var(--fab-shadow-hover);
}

.alsaif-fab-btn:active {
    transform: scale(0.95);
}

/* ===================================
   Icon Container
   =================================== */
.fab-icon-inner {
    width: var(--fab-icon);
    height: var(--fab-icon);
    z-index: 5;
    transition: transform 0.3s ease;
    position: relative;
}

.alsaif-fab-btn:hover .fab-icon-inner {
    transform: scale(1.15);
}

.fab-icon-inner svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===================================
   Tooltip
   =================================== */
.fab-tooltip-left {
    position: absolute;
    left: calc(100% + 18px);
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    pointer-events: none;
}

.fab-tooltip-left::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: #1a1a1a;
}

.alsaif-fab-btn:hover .fab-tooltip-left {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ===================================
   Pulse Animation
   =================================== */
.fab-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.fab-whatsapp .fab-pulse {
    border: 3px solid var(--wa-color);
    animation: alsaif-pulse 2s ease-out infinite;
}

.fab-phone .fab-pulse {
    border: 3px solid var(--phone-color);
    animation: alsaif-pulse 2s ease-out infinite 1s;
}

@keyframes alsaif-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

/* ===================================
   Specific Button Styles
   =================================== */
.fab-whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
}

.fab-whatsapp:hover .fab-icon-inner {
    filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.6));
}

.fab-phone:hover {
    background: linear-gradient(135deg, #0077BE 0%, #0066a8 100%);
}

.fab-phone:hover .fab-icon-inner {
    filter: drop-shadow(0 0 12px rgba(0, 119, 190, 0.6));
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    :root {
        --fab-size: 75px;
        --fab-icon: 42px;
    }
    
    .alsaif-fab-container-left {
        bottom: 25px;
        left: 25px;
        gap: 15px;
    }
    
    .fab-tooltip-left {
        font-size: 15px;
        padding: 10px 18px;
    }
}

@media (max-width: 768px) {
    :root {
        --fab-size: 70px;
        --fab-icon: 38px;
    }
    
    .alsaif-fab-container-left {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }
    
    .fab-tooltip-left {
        display: none;
    }
    
    .fab-pulse {
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    :root {
        --fab-size: 65px;
        --fab-icon: 35px;
    }
    
    .alsaif-fab-container-left {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }
}

/* ===================================
   Accessibility
   =================================== */
.alsaif-fab-btn:focus {
    outline: 3px solid var(--phone-color);
    outline-offset: 3px;
}

.fab-whatsapp:focus {
    outline-color: var(--wa-color);
}

@media (prefers-reduced-motion: reduce) {
    .alsaif-fab-btn,
    .fab-icon-inner,
    .fab-tooltip-left {
        transition-duration: 0.01ms !important;
    }
    
    .fab-pulse {
        animation: none !important;
    }
}

/* ===================================
   Performance Optimization
   =================================== */
.alsaif-fab-btn,
.fab-icon-inner,
.fab-pulse {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ═══ social-sidebar ═══ */
/* ============================================
   SOCIAL SIDEBAR - VARIABLES
   ============================================ */
:root {
  --enjaz-sb-fb-bg: #1877F2;
  --enjaz-sb-fb-hover: #0d65d9;
  --enjaz-sb-x-bg: #000000;
  --enjaz-sb-x-hover: #1a1a1a;
  --enjaz-sb-ig-1: #F58529;
  --enjaz-sb-ig-2: #DD2A7B;
  --enjaz-sb-ig-3: #8134AF;
  --enjaz-sb-ig-4: #515BD4;
  --enjaz-sb-tiktok-bg: #010101;
  --enjaz-sb-tiktok-hover: #1a1a1a;
  --enjaz-sb-snap-bg: #FFFC00;
  --enjaz-sb-snap-hover: #e6e300;
  --enjaz-sb-yt-bg: #FF0000;
  --enjaz-sb-yt-hover: #cc0000;
  --enjaz-sb-icon-size: 52px;
  --enjaz-sb-icon-dim: 26px;
  --enjaz-sb-expanded: 180px;
  --enjaz-sb-gap: 4px;
  --enjaz-sb-radius: 0 14px 14px 0;
  --enjaz-sb-shadow: 3px 3px 12px rgba(0,0,0,0.25);
  --enjaz-sb-z: 99999;
}

/* ============================================
   SIDEBAR CONTAINER - FIXED POSITIONING
   ============================================ */
.enjaz-social-sb {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--enjaz-sb-z);
  display: flex;
  flex-direction: column;
  height: calc(6 * var(--enjaz-sb-icon-size) + 5 * var(--enjaz-sb-gap));
  width: var(--enjaz-sb-expanded);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.enjaz-social-sb.enjaz-sb-hidden {
  transform: translateY(-50%) translateX(calc(-1 * var(--enjaz-sb-icon-size) - 5px));
}

/* ============================================
   TOGGLE BUTTON
   ============================================ */
.enjaz-sb-toggle {
  position: absolute;
  top: -40px;
  left: 0;
  width: 40px;
  height: 36px;
  background: #111;
  border: none;
  border-radius: 0 8px 0 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  pointer-events: auto;
  box-shadow: 2px -2px 8px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.enjaz-sb-toggle:hover {
  background: #333;
}

.enjaz-sb-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.enjaz-social-sb.enjaz-sb-hidden .enjaz-sb-toggle svg {
  transform: rotate(180deg);
}

/* ============================================
   SIDEBAR ITEM - ABSOLUTE POSITIONING
   Each item has fixed top so hover on one
   does NOT push/move others
   ============================================ */
.enjaz-sb-item {
  position: absolute;
  left: 0;
  height: var(--enjaz-sb-icon-size);
  width: var(--enjaz-sb-icon-size);
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: #fff !important;
  overflow: hidden;
  border-radius: var(--enjaz-sb-radius);
  box-shadow: var(--enjaz-sb-shadow);
  cursor: pointer;
  white-space: nowrap;
  pointer-events: auto;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s ease;
}

.enjaz-sb-item:hover {
  width: var(--enjaz-sb-expanded);
  box-shadow: 5px 5px 20px rgba(0,0,0,0.35);
  text-decoration: none !important;
  color: #fff !important;
}

.enjaz-sb-item:active {
  filter: brightness(0.9);
}

/* Fixed top positions - each button stays in place */
.enjaz-sb-item:nth-child(2) { top: 0; }
.enjaz-sb-item:nth-child(3) { top: calc(1 * (var(--enjaz-sb-icon-size) + var(--enjaz-sb-gap))); }
.enjaz-sb-item:nth-child(4) { top: calc(2 * (var(--enjaz-sb-icon-size) + var(--enjaz-sb-gap))); }
.enjaz-sb-item:nth-child(5) { top: calc(3 * (var(--enjaz-sb-icon-size) + var(--enjaz-sb-gap))); }
.enjaz-sb-item:nth-child(6) { top: calc(4 * (var(--enjaz-sb-icon-size) + var(--enjaz-sb-gap))); }
.enjaz-sb-item:nth-child(7) { top: calc(5 * (var(--enjaz-sb-icon-size) + var(--enjaz-sb-gap))); }

/* ============================================
   ICON BOX
   ============================================ */
.enjaz-sb-icon {
  min-width: var(--enjaz-sb-icon-size);
  width: var(--enjaz-sb-icon-size);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.enjaz-sb-icon svg {
  width: var(--enjaz-sb-icon-dim);
  height: var(--enjaz-sb-icon-dim);
  fill: #fff;
  flex-shrink: 0;
}

/* ============================================
   LABEL
   ============================================ */
.enjaz-sb-label {
  padding-right: 14px;
  padding-left: 6px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease 0.12s, transform 0.25s ease 0.12s;
  direction: rtl;
  text-align: right;
  flex: 1;
}

.enjaz-sb-item:hover .enjaz-sb-label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   PLATFORM COLORS
   ============================================ */
.enjaz-sb-facebook {
  background: var(--enjaz-sb-fb-bg);
}
.enjaz-sb-facebook:hover {
  background: var(--enjaz-sb-fb-hover);
}

.enjaz-sb-x {
  background: var(--enjaz-sb-x-bg);
}
.enjaz-sb-x:hover {
  background: var(--enjaz-sb-x-hover);
}

.enjaz-sb-instagram {
  background: linear-gradient(45deg,
    var(--enjaz-sb-ig-1),
    var(--enjaz-sb-ig-2),
    var(--enjaz-sb-ig-3),
    var(--enjaz-sb-ig-4)
  );
}
.enjaz-sb-instagram:hover {
  background: linear-gradient(45deg, #e07520, #c92468, #7029a0, #4550c5);
}

.enjaz-sb-tiktok {
  background: var(--enjaz-sb-tiktok-bg);
}
.enjaz-sb-tiktok:hover {
  background: var(--enjaz-sb-tiktok-hover);
}

.enjaz-sb-youtube {
  background: var(--enjaz-sb-yt-bg);
}
.enjaz-sb-youtube:hover {
  background: var(--enjaz-sb-yt-hover);
}

.enjaz-sb-snapchat {
  background: var(--enjaz-sb-snap-bg);
}
.enjaz-sb-snapchat:hover {
  background: var(--enjaz-sb-snap-hover);
}
.enjaz-sb-snapchat,
.enjaz-sb-snapchat:hover {
  color: #000 !important;
}
.enjaz-sb-snapchat .enjaz-sb-icon svg {
  fill: #000;
}
.enjaz-sb-snapchat .enjaz-sb-label {
  color: #000;
}

/* ============================================
   ENTRANCE ANIMATION
   ============================================ */
@keyframes enjazSbSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.enjaz-sb-item {
  opacity: 0;
  animation: enjazSbSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.enjaz-sb-item:nth-child(2) { animation-delay: 0.5s; }
.enjaz-sb-item:nth-child(3) { animation-delay: 0.65s; }
.enjaz-sb-item:nth-child(4) { animation-delay: 0.8s; }
.enjaz-sb-item:nth-child(5) { animation-delay: 0.95s; }
.enjaz-sb-item:nth-child(6) { animation-delay: 1.1s; }
.enjaz-sb-item:nth-child(7) { animation-delay: 1.25s; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 768px) {
  :root {
    --enjaz-sb-icon-size: 44px;
    --enjaz-sb-icon-dim: 22px;
    --enjaz-sb-expanded: 158px;
    --enjaz-sb-gap: 3px;
  }

  .enjaz-sb-toggle {
    width: 34px;
    height: 30px;
    top: -32px;
  }

  .enjaz-sb-toggle svg {
    width: 13px;
    height: 13px;
  }

  .enjaz-sb-label {
    font-size: 13px;
    padding-right: 10px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 480px) {
  :root {
    --enjaz-sb-icon-size: 40px;
    --enjaz-sb-icon-dim: 20px;
    --enjaz-sb-expanded: 148px;
    --enjaz-sb-gap: 3px;
  }

  .enjaz-sb-label {
    font-size: 12px;
  }
}

/* ============================================
   PRINT HIDE
   ============================================ */
@media print {
  .enjaz-social-sb { display: none !important; }
}
