.elementor-2020 .elementor-element.elementor-element-68e8e2427a703{--display:flex;}.elementor-2020 .elementor-element.elementor-element-79b015d{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) -84px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-79b015d */@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
  background: #f3f0f0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* HEADER CONTAINER */
/* Force header to be full screen, fixed */
/* ===== VIP HEADER BASE ===== */
.vip-header-container {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.25);   /* transparent dark glass */
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
  transition: all 0.45s ease;
}

/* ===== VIP HEADER AFTER SCROLL ===== */
.vip-header-container.scrolled {
  background: rgba(20, 20, 20, 0.85);  /* richer dark glass */
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35); /* subtle gold accent */
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* remove inner limits */
.vip-header-inner {
  width: 100%;               /* force full width */
  max-width: 100%;           /* kill container limit */
  margin: 0;                 /* no centering */
  padding: 0 30px;           /* some space at edges */
  box-sizing: border-box;
}

.vip-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


.vip-header-logo {
  position: relative;
}

.vip-header-logo img {
  width: 90px;
  border-radius: 8px;
}

/* Trusted by Influencers Style */
.vip-trusted-text {
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%);
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: #b800d8;
  white-space: nowrap;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

/* FLOATING VIP MENU */
.vip-menu-wrapper {
  background: linear-gradient(135deg, rgba(15,15,25,0.9), rgba(25,25,40,0.9)); /* cosmic glass */
  padding: 10px 30px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: 20px;
  position: relative;

  /* Futuristic borders + aura */
  border: 2px solid rgba(120, 200, 255, 0.5); /* neon ice border */
  box-shadow:
    0 0 15px rgba(120, 200, 255, 0.35),  /* glowing aura */
    0 10px 30px rgba(0,0,0,0.7),          /* deep shadow */
    inset 0 0 25px rgba(120, 200, 255, 0.15); /* inner energy glow */

  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: all 0.4s ease;
}

.vip-menu-wrapper:hover {
  border-color: rgba(180, 255, 255, 0.9);
  box-shadow:
    0 0 25px rgba(180, 255, 255, 0.6),
    0 14px 40px rgba(0,0,0,0.85),
    inset 0 0 40px rgba(180, 255, 255, 0.25);
  transform: translateY(-2px);
}


.vip-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vip-nav-links a, .vip-dropbtn {
  text-decoration: none;
  color: #300050;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  font-size: 14px;
}

.vip-nav-links a:hover, .vip-dropbtn:hover {
  background: #f9f1ff;
  color: #8000d2;
}

/* CONTACT BUTTON */
/* CONTACT BUTTON - Cosmic Royal Style */
.vip-contact-btn {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c); /* deep black base */
  color: #fcefb4; /* soft royal gold */
  padding: 12px 30px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.6px;

  /* VIP cosmic borders + glow */
  border: 2px solid rgba(212, 175, 55, 0.7); /* gold edge */
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.25), /* golden aura */
    0 6px 22px rgba(98, 0, 234, 0.35), /* purple nebula glow */
    inset 0 0 15px rgba(255, 215, 0, 0.15);

  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  transition: all 0.35s ease, transform 0.35s ease;
}

.vip-contact-btn:hover {
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  color: #fff6d6;
  border-color: rgba(255, 215, 0, 0.9);
  box-shadow:
    0 0 28px rgba(212, 175, 55, 0.55),
    0 12px 32px rgba(98, 0, 234, 0.45),
    inset 0 0 25px rgba(255, 215, 0, 0.25);
  transform: translateY(-3px) scale(1.05);
}


/* HIDE CONTACT ON MOBILE */
@media (max-width: 992px) {
  .vip-contact-btn {
    display: none !important;
  }
}

/* === VIP DROPDOWN === */
.vip-dropdown {
  position: relative;
}

/* Dropdown Box */
.vip-dropdown-content {
  position: absolute;
  top: 52px;
  right: 0;
  background: rgba(20, 20, 25, 0.92); /* dark glass */
  border: 1px solid rgba(212, 175, 55, 0.4); /* subtle gold */
  border-radius: 16px;
  padding: 18px;
  min-width: 380px;
  z-index: 999;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  box-sizing: border-box;

  /* Glass + shadow */
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 10px 28px rgba(0,0,0,0.55),
              0 0 20px rgba(212, 175, 55, 0.25);
  animation: vip-fade 0.35s ease;
}

/* Open State */
.vip-dropdown-content.open {
  display: grid;
}

/* Links */
.vip-dropdown-content a {
  font-weight: 600;
  color: #f8f8f8;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  transition: all 0.3s ease;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.vip-dropdown-content a:hover {
  color: #201600;
  background: linear-gradient(135deg, #d4af37, #f1d58b);
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

/* Link Icons */
.vip-dropdown-content a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

/* Fade-in Animation */
@keyframes vip-fade {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}


.vip-dropdown-content a img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* MOBILE RESPONSIVE FIX for DROPDOWN */
@media (max-width: 600px) {
  .vip-dropdown-content {
    min-width: 250px;
    grid-template-columns: 1fr !important;
  }
}

/* === VIP MOBILE TOGGLE BUTTON === */
.vip-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20,20,25,0.95), rgba(35,35,45,0.95));
  border: 2px solid rgba(212, 175, 55, 0.6); /* subtle gold edge */
  box-shadow: 
    0 0 15px rgba(212, 175, 55, 0.25),       /* outer aura */
    0 8px 22px rgba(0,0,0,0.65),             /* depth */
    inset 0 0 12px rgba(255, 215, 0, 0.12);  /* inner glow */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
}

.vip-toggle:hover {
  border-color: rgba(255, 215, 0, 0.9);
  box-shadow: 
    0 0 20px rgba(212, 175, 55, 0.4),
    0 10px 28px rgba(0,0,0,0.75),
    inset 0 0 18px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px) scale(1.05);
}

/* Bars inside the toggle */
.vip-toggle span {
  height: 3px;
  width: 20px;
  background: linear-gradient(90deg, #d4af37, #f7e98b); /* gold gradient bars */
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.45);
  transition: all 0.3s ease;
}

/* Optional: animate into "X" when active */
.vip-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.vip-toggle.active span:nth-child(2) {
  opacity: 0;
}
.vip-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}


/* === VIP MOBILE MENU TOGGLE === */
@media (max-width: 992px) {
  .vip-toggle { 
    display: flex; 
  }

  .vip-menu-wrapper { 
    display: none; 
    width: 100%;
  }

  .vip-menu-wrapper.active {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(20, 20, 25, 0.95); /* dark glass */
    padding: 22px;
    border-radius: 18px;
    margin-top: 14px;
    box-shadow: 
      0 8px 28px rgba(0,0,0,0.55),
      0 0 20px rgba(212, 175, 55, 0.25); /* subtle VIP aura */
    border: 2px solid rgba(212, 175, 55, 0.35); /* gold border */
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    animation: vip-slide 0.35s ease forwards;
  }

  .vip-nav-links { 
    flex-direction: column; 
    width: 100%; 
    gap: 12px;
  }

  .vip-nav-links a, 
  .vip-dropbtn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #f8f8f8;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
  }

  .vip-nav-links a:hover, 
  .vip-dropbtn:hover {
    background: linear-gradient(135deg, #d4af37, #f1d58b); /* VIP gold hover */
    color: #201600;
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
  }
}

/* Slide-in animation */
@keyframes vip-slide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Overlay Background === */
.vip-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* === Popup Box === */
.vip-popup {
  background: #000; /* Pure black */
  color: #fff; /* White text */
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 25px rgba(180,0,255,0.6);
  position: relative;
  animation: fadeIn 0.4s ease;
}

.vip-popup h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  color: #fff;
  letter-spacing: 1px;
}

/* === Close Button === */
.close-btn {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.close-btn:hover {
  color: #ff4444;
}

/* === Input Wrapper === */
.vip-input-wrap {
  position: relative;
  margin-bottom: 25px;
}

.vip-input-wrap input,
.vip-input-wrap textarea {
  width: 100%;
  padding: 14px 12px;
  border: 2px solid #555;
  background: #111;
  border-radius: 8px;
  font-size: 16px;
  color: #fff; /* White text */
  outline: none;
  resize: none;
  transition: border 0.3s;
}

.vip-input-wrap input:focus,
.vip-input-wrap textarea:focus {
  border-color: #b000ff; /* Purple glow */
  box-shadow: 0 0 10px rgba(176,0,255,0.6);
}

/* === Floating Labels === */
.vip-input-wrap label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  transition: 0.3s ease;
}

/* Stay above when filled OR focused */
.vip-input-wrap input:focus + label,
.vip-input-wrap input:not(:placeholder-shown) + label,
.vip-input-wrap textarea:focus + label,
.vip-input-wrap textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  background: #000;
  padding: 0 6px;
  font-size: 12px;
  color: #b000ff;
}

/* === Submit Button === */
.vip-popup button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #b000ff, #ff0080);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
.vip-popup button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255,0,128,0.6);
}

/* === Animation === */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}


/* Hide duplicate Contact in desktop */
.vip-mobile-contact {
  display: none;
}

/* On mobile toggle, show it inside menu */
@media (max-width: 768px) {
  .vip-contact-btn { display: none; }   /* hide desktop floating */
  .vip-mobile-contact { display: block; } /* show inside mobile nav */
}/* End custom CSS */