body {
    /* font-family: 'Inter', sans-serif; */
    font-family: 'ProximaNovaRegular', sans-serif !important;
    background: linear-gradient(135deg, #0F1419 0%, #1a1f2e 100%);
    margin: 0;
    padding: 0;
    color: #ffffff;
  }

  /* .font-playfair {
    font-family: 'Playfair Display', serif;
  } */

  /* Loading Screen */
  #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F1419 0%, #1a1f2e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.8s ease;
  }

  #loading-screen.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
  }

  .luxury-loader {
    position: relative;
    width: 120px;
    height: 120px;
  }

  .loader-ring {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: luxuryRotate 2s linear infinite;
  }

  .loader-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    border-top: 3px solid #D4AF37;
    animation-delay: 0s;
  }

  .loader-ring:nth-child(2) {
    width: 90px;
    height: 90px;
    border-right: 3px solid #FF8C42;
    top: 15px;
    left: 15px;
    animation-delay: -0.5s;
    animation-direction: reverse;
  }

  .loader-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    border-bottom: 3px solid #FFD700;
    top: 30px;
    left: 30px;
    animation-delay: -1s;
  }

  @keyframes luxuryRotate {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .loading-text {
    margin-top: 2rem;
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInOut 2s ease-in-out infinite;
  }


  /* Hero Text Gradient */
  .hero-text-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
  }

  @keyframes shimmer {

    0%,
    100% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }
  }

  /* Floating Animations */
  .float-slow {
    animation: floatSlow 4s ease-in-out infinite;
  }

  .float-medium {
    animation: floatMedium 3s ease-in-out infinite;
  }

  .float-fast {
    animation: floatFast 2s ease-in-out infinite;
  }

  @keyframes floatSlow {

    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-15px) rotate(2deg);
    }
  }

  @keyframes floatMedium {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes floatFast {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  /* Luxury Cards */
  .luxury-card {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent);
    transition: left 0.5s ease;
  }

  .luxury-card:hover::before {
    left: 100%;
  }

  .luxury-card:hover {
    box-shadow:
      0 25px 50px rgba(212, 175, 55, 0.2),
      0 0 0 1px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
  }

  /* Pulse Effect */
  .pulse-ring {
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  @keyframes pulseRing {
    0% {
      box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
      box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
  }



  /* Buttons */
  .btn-luxury {
    background: linear-gradient(135deg, #D4AF37 0%, #FF8C42 100%);
    color: #000000;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
  }

  .btn-luxury::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.5s ease;
  }

  .btn-luxury:hover::before {
    left: 100%;
  }

  .btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  }

  /* Feature Items */
  .feature-item {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
  }

  .feature-item:hover {
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(255, 140, 66, 0.1) 100%);
    transform: translateX(10px);
    border-left: 3px solid #D4AF37;
    padding-left: 1.5rem;
  }

  /* Icon Glow */
  .icon-glow {
    position: relative;
    transition: all 0.3s ease;
  }

  .icon-glow:hover {
    transform: scale(1.1) rotate(5deg);
  }

  /* Value Card */
  .value-card {
    background: linear-gradient(145deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(255, 140, 66, 0.1) 50%,
        rgba(212, 175, 55, 0.1) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .value-card:hover {
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
  }

  /* Star Rating */
  .star-rating {
    color: #FFD700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  }

  /* Responsive */
  /* @media (max-width: 768px) {
    .hero-text-gradient {
      font-size: 3rem !important;
    }
  } */
  