.elementor-4785 .elementor-element.elementor-element-929c437{--display:flex;}.elementor-4785 .elementor-element.elementor-element-afd676a > .elementor-widget-container{margin:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-afd676a *//* === 🌟 VIP LUXURY HEADER BASE === */
.vip-header-container {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  color: #111;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}
.vip-header-container.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.vip-header-container.dark {
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  color: #f5f5f5;
  border-color: #333;
}
.vip-header-container.dark.scrolled {
  background: rgba(30, 30, 30, 0.85);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* === HEADER LAYOUT === */
.vip-header-inner {
  max-width: 1440px;
  margin: auto;
  padding: 16px 24px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}
.vip-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* === LOGO === */
.vip-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vip-header-logo img {
  height: 70px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.vip-header-logo img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

/* === NAVIGATION === */
.vip-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vip-menu-wrapper {
  position: relative;
}
.vip-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.vip-nav-btn,
.vip-dropbtn {
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 10px;
  transition: 0.3s ease;
}
.vip-nav-btn:hover,
.vip-dropbtn:hover {
  color: #d1003f;
  background: #f9f9f9;
  transform: scale(1.05);
}
.dark .vip-nav-btn,
.dark .vip-dropbtn {
  color: #eee;
}
.dark .vip-nav-btn:hover,
.dark .vip-dropbtn:hover {
  background: #292929;
}

/* === DROPDOWN MENU === */
.vip-dropdown-content {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  width: 280px;
  z-index: 999;
}
.vip-dropdown-content.open {
  display: flex;
}
.vip-dropdown-content a {
  white-space: normal;
  word-break: break-word;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}

.vip-dropdown-content a:hover {
  background: linear-gradient(135deg, #f2f2f2, #eaeaea);
  transform: scale(1.03);
}
.vip-dropdown-content img {
  width: 26px;
  height: 26px;
}

/* === DARK DROPDOWN === */
.dark .vip-dropdown-content {
  background: #1e1e1e;
}
.dark .vip-dropdown-content a {
  color: #eee;
}
.dark .vip-dropdown-content a:hover {
  background: #2c2c2c;
}

/* === CONTACT BUTTON === */
.vip-contact-btn {
  background: linear-gradient(to right, #d1003f, #ff5f5f);
  color: #fff;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(209, 0, 63, 0.3);
  transition: all 0.3s ease;
}
.vip-contact-btn:hover {
  background: linear-gradient(to right, #b00034, #e04545);
  transform: scale(1.03);
}

/* === DARK MODE TOGGLE === */
#vip-darkmode-toggle {
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}
#vip-darkmode-toggle:hover {
  background: #e9e9e9;
}
.dark #vip-darkmode-toggle {
  background: #202020;
  color: #f9f9f9;
  border-color: #444;
}

/* === VIP TOGGLE BUTTON === */
.vip-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0057e7, #00b2ff);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 132, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 999;
}
.vip-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 132, 255, 0.5);
}
.vip-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  margin: 3.5px 0;
  transition: all 0.3s ease;
}
.dark .vip-toggle {
  background: linear-gradient(135deg, #202020, #343434);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.05);
}
.dark .vip-toggle span {
  background: #fff;
}

/* === MOBILE PANEL === */
.vip-mobile-menu-panel {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 16px;
  width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  gap: 16px;
}
.vip-mobile-menu-panel.active {
  display: flex;
}
.vip-mobile-menu-panel .vip-nav-links {
  flex-direction: column;
  gap: 12px;
}
.vip-mobile-menu-panel .vip-dropdown-content {
  position: static;
  box-shadow: none;
  width: 100%;
  margin-top: 10px;
}
.vip-mobile-menu-panel .vip-dropdown-content a {
  padding: 10px;
  border-radius: 8px;
}

/* === DARK MODE MOBILE PANEL === */
.dark .vip-mobile-menu-panel {
  background: #1a1a1a;
}
.dark .vip-mobile-menu-panel .vip-dropdown-content {
  background: #2a2a2a;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .vip-toggle {
    display: flex;
  }
  .vip-menu-wrapper {
    display: none;
  }
  .vip-header-logo img {
    height: 58px;
  }
}
.vip-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  padding: 16px;
}
.vip-dropdown-grid a {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: 0.2s ease;
}
.vip-dropdown-grid a:hover {
  background: linear-gradient(135deg, #f3f3f3, #e9e9e9);
  transform: scale(1.02);
}
.vip-dropdown-grid img {
  width: 22px;
  height: 22px;
}
.dark .vip-dropdown-grid a {
  background: #2a2a2a;
  color: #eee;
}
.dark .vip-dropdown-grid a:hover {
  background: #333;
}

/* Optional scroll if too long */
@media (max-width: 768px) {
  .vip-dropdown-grid {
    max-height: 340px;
    overflow-y: auto;
    scrollbar-width: thin;
  }
}
.vip-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vip-header-logo {
  flex: 0 0 auto;
}

.vip-header-stars {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vip-header-stars img {
  height:2a2a2a0px;
  max-width: 140px;
  object-fit: contain;
}

/* Toggle button already styled *//* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-05ffd86 *//* === 🎖️ VIP FOOTER BASE === */
:root {
  --bg-footer: linear-gradient(145deg, #f8f0ff 0%, #fdfaff 100%);
  --text-main: #2d2d2d;
  --text-light: #6b6b6b;
  --text-heading: #111;
  --link-hover: #9f3dff;
  --footer-border-radius: 40px;
  --footer-font: 'Poppins', sans-serif;
  --footer-glow: 0 6px 24px rgba(160, 40, 255, 0.08);
}

.vip-footer {
  background: var(--bg-footer);
  border-radius: var(--footer-border-radius) var(--footer-border-radius) 0 0;
  padding: 70px 30px 40px;
  font-family: var(--footer-font);
  color: var(--text-main);
  box-shadow: var(--footer-glow);
}

/* === ⚙️ CONTAINER === */
.vip-footer-container {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 24px;
  box-sizing: border-box;
}

/* === 🔗 TOP NAVIGATION === */
.footer-top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}

.footer-top-nav a {
  color: var(--text-main);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-top-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--link-hover);
  transition: width 0.3s ease;
}

.footer-top-nav a:hover {
  color: var(--link-hover);
}

.footer-top-nav a:hover::after {
  width: 100%;
}

/* === 🔗 SERVICE COLUMNS === */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--link-hover);
  transform: translateX(4px);
}

/* === 🔻 BOTTOM BAR === */
.footer-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid #e3dff2;
  font-size: 14px;
  color: var(--text-light);
}

/* === 🖼️ BRAND SECTION === */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-brand-logo {
  width: 90px !important;
  height: 90px !important;
  display: block !important;
  object-fit: contain !important;
  border-radius: 20px !important;
  padding: 6px !important;
 
 
}


.legal {
  font-size: 13.2px;
  color: #999;
}

/* === 💳 PAYMENT ICONS === */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-payments img {
  height: 40px !important;
  width: auto !important;
  max-height: unset !important;
  max-width: unset !important;
  object-fit: contain !important;
  display: inline-block !important;
  filter: none !important;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-payments img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}



/* === 📱 RESPONSIVE === */
@media (max-width: 992px) {
  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-top-nav {
    justify-content: center;
    gap: 20px;
    text-align: center;
  }

  .footer-brand-logo {
    margin-bottom: 0;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-929c437 */a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}/* End custom CSS */