.elementor-34 .elementor-element.elementor-element-5252e9d{--display:flex;--min-height:0px;--margin-top:-8px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-34 .elementor-element.elementor-element-5252e9d.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-34 .elementor-element.elementor-element-fd725c6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-34 .elementor-element.elementor-element-47e20d7 > .elementor-widget-container{margin:28px 0px 0px 0px;}.elementor-34 .elementor-element.elementor-element-155c1cb > .elementor-widget-container{margin:-120px 0px 0px 0px;}.elementor-34 .elementor-element.elementor-element-22bcdb4 > .elementor-widget-container{margin:-47px 0px 0px 0px;}.elementor-34 .elementor-element.elementor-element-8213707{--display:flex;--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-34 .elementor-element.elementor-element-09f54ee > .elementor-widget-container{margin:-148px 0px 0px 0px;}@media(max-width:1366px){.elementor-34 .elementor-element.elementor-element-155c1cb > .elementor-widget-container{margin:0px 0px 0px 0px;}}@media(min-width:768px){.elementor-34 .elementor-element.elementor-element-5252e9d{--width:100%;}}@media(max-width:1200px) and (min-width:768px){.elementor-34 .elementor-element.elementor-element-5252e9d{--width:1025em;}}@media(max-width:767px){.elementor-34 .elementor-element.elementor-element-47e20d7 > .elementor-widget-container{margin:5px 0px 0px 0px;}.elementor-34 .elementor-element.elementor-element-155c1cb > .elementor-widget-container{margin:-22px 0px 0px 0px;}.elementor-34 .elementor-element.elementor-element-22bcdb4 > .elementor-widget-container{margin:-80px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-fd725c6 *//* === 🌟 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-47e20d7 */.vip-hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #111 20%, #000 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 24px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
}

.vip-hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.05);
}

.ig-icon img {
  height: 2.2em;
  margin-bottom: -6px;
  filter: drop-shadow(0 0 6px #d62976);
}

.gradient-text {
  background: linear-gradient(90deg, #FFFCFB, #C5172E, #DD88CF, #FF7601);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 9s ease infinite;
  font-weight: 900;
  text-shadow: 0 0 8px rgba(214, 41, 118, 0.2);
}

.vip-hero p {
  max-width: 780px;
  font-size: 1.1rem;
  color: #e2e2e2;
  font-weight: 500;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: 38px;
}

.vip-hero p strong {
  font-weight: 700;
  background: linear-gradient(90deg, #feda75, #d62976, #4f5bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vip-hero p em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}

.vip-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #feda75, #d62976, #4f5bd5);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 0 22px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
}

.vip-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.verified-icon {
  height: 13px;
  width: 20px;
  margin-left: 5px;
  margin-bottom: 1px;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
}





/* ✅ Mobile Adjustments */
@media screen and (max-width: 768px) {
  .vip-hero {
    padding: 100px 20px 60px;
    min-height: 100vh;
  }

  .vip-hero h1 {
    font-size: clamp(34px, 8vw, 46px);
    flex-direction: column;
    gap: 14px;
    line-height: 1.35;
  }

  .ig-icon img {
    height: 4em;
    margin-bottom: 0;
  }

  .vip-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 0 6px;
  }

  .vip-btn {
    font-size: 1rem;
    padding: 12px 28px;
    margin-top: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5a384fc */body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fef9ff, #f3f6ff);
  color: #222;
}

.vip-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 30px;
  max-width: 1400px;
  margin: 60px auto;
  box-shadow: 0 0 40px rgba(255, 0, 120, 0.15);
  position: relative;
  overflow: hidden;
}

.vip-text {
  flex: 1 1 600px;
  padding-right: 40px;
}

.vip-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.vater {
  font-family: 'Bonello', cursive;
  font-size: 3rem;
  background: linear-gradient(to right, #ff0077, #a335f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vip-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.highlight {
  color: #ff3f8c;
  font-weight: 600;
}

.shine {
  background: linear-gradient(to right, #ff0077, #ffb6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.fadeword {
  font-family: 'Bonello', cursive;
  color: #ff66cc;
  font-size: 1.4rem;
}

.vip-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vip-feature {
  font-size: 1.1rem;
  background: rgba(255, 0, 120, 0.05);
  padding: 12px 20px;
  border-left: 6px solid #ff00a1;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
}

.vip-feature.visible {
  opacity: 1;
  transform: scale(1);
}

.vip-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.vip-image.visible {
  opacity: 1;
  transform: scale(1);
}

.glow-border {
  position: relative;
  border-radius: 30px;
  padding: 10px;
  background: linear-gradient(145deg, #ff0088, #6900ff);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
  overflow: hidden;
}

.glow-border img {
  width: 100%;
  max-width: 350px;
  border-radius: 30px;
  display: block;
}

.animated-icons span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.8;
  animation: float 4s infinite ease-in-out;
  color: #ff66cc;
}

.animated-icons span:nth-child(1) {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}
.animated-icons span:nth-child(2) {
  bottom: 30px;
  left: 40px;
  animation-delay: 1s;
}
.animated-icons span:nth-child(3) {
  top: 40%;
  right: 25px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.fade-element {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.6s ease-out;
}

.fade-element.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .vip-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .vip-text {
    padding-right: 0;
  }

  .vip-image {
    margin-top: 40px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1cf044d */body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fcf5ff, #f5f8ff);
  color: #222;
}

.growth-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  background: #fff;
  border-radius: 40px;
  max-width: 1400px;
  margin: 60px auto;
  box-shadow: 0 20px 80px rgba(200, 0, 100, 0.1);
  position: relative;
  overflow: hidden;
}

.growth-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  position: relative;
}

.glow-border {
  position: relative;
  border-radius: 35px;
  padding: 12px;
  background: linear-gradient(145deg, #ff0088, #a335f2);
  box-shadow: 0 0 50px rgba(255, 0, 128, 0.3);
  overflow: hidden;
}

.glow-border img {
  width: 100%;
  max-width: 350px;
  border-radius: 30px;
  display: block;
}

.animated-icons span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.85;
  animation: float 4s infinite ease-in-out;
  color: #ff66cc;
}

.animated-icons span:nth-child(1) {
  top: 15px;
  left: 20px;
  animation-delay: 0s;
}

.animated-icons span:nth-child(2) {
  bottom: 25px;
  left: 35px;
  animation-delay: 1s;
}

.animated-icons span:nth-child(3) {
  top: 40%;
  right: 25px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.growth-text {
  flex: 1 1 550px;
  padding-left: 60px;
}

.growth-title {
  font-size: 2.9rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  background: linear-gradient(90deg, #ff0077, #a335f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.growth-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.growth-points {
  background: rgba(255, 0, 120, 0.06);
  padding: 22px;
  border-left: 6px solid #ff00a1;
  border-radius: 20px;
  font-size: 1.05rem;
  color: #333;
  box-shadow: 0 10px 20px rgba(255, 0, 128, 0.08);
  margin-bottom: 30px;
}

.growth-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: linear-gradient(135deg, #ffe1f0, #f0e4ff);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 10px 30px rgba(180, 0, 90, 0.1);
  text-align: center;
  flex: 1 1 140px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff0080, #8e2de2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1rem;
  color: #555;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .growth-section {
    flex-direction: column-reverse;
    padding: 40px 20px;
    text-align: center;
  }

  .growth-text {
    padding-left: 0;
    margin-top: 40px;
  }

  .growth-stats {
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9f20942 */.vip-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 30px;
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
  border-top: 2px dashed #e8cfff;
  border-bottom: 2px dashed #e8cfff;
  font-family: 'Poppins', sans-serif;
}

.vip-box {
  flex: 0 0 calc(50% - 20px);
  box-sizing: border-box;
  text-align: center;
  padding: 20px 10px;
}

@media (max-width: 600px) {
  .vip-box {
    flex: 0 0 100%;
  }
}


.vip-img-wrapper {
  background: radial-gradient(circle, #f9eaff, #ffffff);
  border-radius: 50%;
  padding: 18px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 10px 40px rgba(150, 82, 255, 0.1);
}

.vip-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.vip-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.vip-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .vip-grid-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-5252e9d */a {
  text-decoration: none !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e89147e */.viter-premium-section {
  background: linear-gradient(to right, #f9f9fc, #fdfdff);
  padding: 100px 40px;
  border-radius: 40px;
  max-width: 1400px;
  margin: 80px auto;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.viter-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.viter-content {
  flex: 1 1 55%;
}

.viter-image {
  flex: 1 1 35%;
  text-align: center;
}

.viter-image img {
  max-width: 100%;
  max-height: 440px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 30px;
  border: 3px dashed #d8b4fe;
  background: #f9f3ff;
  box-shadow: 0 16px 40px rgba(180, 140, 255, 0.3);
  transition: all 0.4s ease;
}
.viter-image {
  flex: 1 1 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.viter-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(160, 120, 255, 0.5);
}

.viter-label {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #7c3aed;
  font-weight: 600;
  margin-bottom: 20px;
  gap: 10px;
}

.viter-label img {
  width: 22px;
  height: 22px;
}

.viter-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px;
  color: #111;
}

.viter-subtitle {
  font-size: 20px;
  color: #444;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 620px;
}

.viter-columns {
  display: flex;
  flex-wrap: wrap;
  border: 2px dashed #d8b4fe;
  border-radius: 30px;
  overflow: hidden;
}

.viter-box {
  flex: 1 1 50%;
  padding: 40px 30px;
  font-size: 17px;
  line-height: 1.85;
  color: #333;
  border-right: 1px dashed #d8b4fe;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.viter-box:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .viter-container {
    flex-direction: column;
  }

  .viter-columns {
    flex-direction: column;
  }

  .viter-box {
    border-right: none;
    border-bottom: 1px dashed #d8b4fe;
  }

  .viter-box:last-child {
    border-bottom: none;
  }

  .viter-premium-section {
    padding: 60px 20px;
  }

  .viter-title {
    font-size: 34px;
  }

  .viter-subtitle {
    font-size: 17px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-09f54ee *//* MAIN WRAPPER */
.vip-services {
  max-width: 1250px;
  margin: 100px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.vip-header {
  text-align: center;
  margin-bottom: 60px;
}

.vip-section-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #5b5b5b;
  gap: 8px;
}

.vip-section-tag img {
  width: 40px;
  height: 40px;
}

.vip-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 12px;
}

.highlighted {
  background: #FFD8D8; 
  padding: 3px 10px;
  border-radius: 8px;
  color: #0e0e0e;
}

/* GRID LAYOUT */
.vip-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* INDIVIDUAL BOX */
.vip-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  position: relative;
  transition: 0.3s ease;
}

.vip-box:hover {
  transform: translateY(-5px);
}

/* TOP SECTION */
.box-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.box-head img {
  width: 60px;
  height: auto;
}

.box-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* RATING SECTION */
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.star {
  color: #facc15;
  font-size: 16px;
}

.score {
  font-size: 14px;
  font-weight: 600;
  color: #14b8a6;
}

.count {
  background: #ececec;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #555;
}

/* TEXT */
.box-text {
  font-size: 14px;
  color: #3c3c3c;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.vip-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #5c67ff, #ae47ff);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 12px 0;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(140, 82, 255, 0.25);
  transition: 0.3s ease;
}

.vip-btn span {
  margin-left: 8px;
}

.vip-btn:hover {
  background: linear-gradient(90deg, #ae47ff, #5c67ff);
}

/* MOBILE: 1 per row */
@media (max-width: 768px) {
  .vip-box-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9d379c3 *//* === FAQ Container === */
.vip-faq {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

/* === FAQ Title === */
.vip-faq-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
}

/* === FAQ Item === */
.vip-faq-item {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover Glow */
.vip-faq-item:hover {
  border-color: #ff5f6d;
  box-shadow: 0 0 16px rgba(255, 95, 109, 0.3);
}

/* === FAQ Question === */
.vip-faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vip-faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.vip-faq-item.active .vip-faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

/* === FAQ Answer === */
.vip-faq-answer {
  padding: 0 28px 22px 28px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

/* Show answer */
.vip-faq-item.active .vip-faq-answer {
  display: block;
}

/* === Animation === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .vip-faq {
    padding: 0 16px;
  }

  .vip-faq-question {
    font-size: 17px;
    padding: 20px;
  }

  .vip-faq-answer {
    font-size: 15px;
    padding: 0 20px 20px;
  }
}
.see-more-btn {
  padding: 14px 36px;
  background: #0070f3;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.2);
}

.see-more-btn:hover {
  background: #005ad6;
  box-shadow: 0 10px 32px rgba(0, 112, 243, 0.4);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-23f978e *//* === 🎖️ 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 */