.elementor-128 .elementor-element.elementor-element-5f308f4{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-128 .elementor-element.elementor-element-5f308f4{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-1c9a668 */:root {
  --gold: #b8956a;
  --gold-light: #d4bd98;
}

/* 🔥 FULL WIDTH HEADER */
#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ❌ REMOVE DOUBLE LINE SOURCES */
#siteHeader::before,
#siteHeader::after { display: none !important; }
header, .elementor-location-header, .elementor-section { border: none !important; box-shadow: none !important; }

/* 🔥 STICKY EFFECT (HEAVY GLASSMORPHISM) 🔥 */
#siteHeader.scrolled {
  background: rgba(255, 252, 247, 0.70) !important; /* Opacity low takki blur dikhe */
  backdrop-filter: blur(24px) saturate(180%) !important; /* Heavy Apple-like glass blur */
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  padding: 12px 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Premium hover shadow */
}

/* 🟢 NAV CONTAINER */
#siteHeader .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* 🟢 LOGO */
#siteHeader .brand { width: auto; display: flex; align-items: center; }
#siteHeader .brand img {
  max-width: 130px;
  height: auto;
  transition: transform 0.4s ease;
}
#siteHeader .brand:hover img { transform: scale(1.05); }

/* 🟢 MENU WRAP */
#siteHeader .main-menu { flex: 1; display: flex; justify-content: space-between; align-items: center; }

/* 🟢 CENTER NAV MENU */
#siteHeader .main-menu nav { flex: 1; display: flex; justify-content: center; gap: clamp(20px, 2.5vw, 36px); }

#siteHeader .main-menu nav a {
  color: #1C1510;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Golden Sliding Underline Effect */
#siteHeader .main-menu nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#siteHeader .main-menu nav a:hover { color: var(--gold); }
#siteHeader .main-menu nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* 🟢 BUTTON STYLING */
#siteHeader .header-action { width: auto; display: flex; justify-content: flex-end; }
#siteHeader .header-action .btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  padding: 13px 28px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(184,149,106,0.25);
  text-decoration: none;
  display: inline-block;
}
#siteHeader .header-action .btn-primary:hover {
  background: #1C1510;
  color: var(--gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(28,21,16,0.3);
}

/* 🟢 MOBILE HAMBURGER ICON */
#siteHeader .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 99999;
}

#siteHeader .menu-toggle span {
  width: 26px;
  height: 2px;
  background: #1C1510;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger to X Animation */
#siteHeader .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
#siteHeader .menu-toggle.active span:nth-child(2) { opacity: 0; }
#siteHeader .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* 🟢 ULTRA-PREMIUM RESPONSIVE MOBILE MENU */
@media (max-width: 1024px) {
  #siteHeader .menu-toggle { display: flex; padding: 10px; }
  
  #siteHeader .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 80px 20px;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #siteHeader .main-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #siteHeader .main-menu nav { flex-direction: column; align-items: center; flex: none; gap: 28px; }
  #siteHeader .main-menu nav a { font-size: 20px; letter-spacing: 0.15em; }

  #siteHeader .header-action { width: 100%; justify-content: center; }
  #siteHeader .header-action .btn-primary { width: 100%; max-width: 300px; text-align: center; padding: 18px; font-size: 14px; }
}/* End custom CSS */