body {
  font-family: 'ProximaNovaRegular', sans-serif !important;
  width: 100%;
  overflow-x: hidden;
}
:root {
  --accent-orange: #f59e0b;
  --dark-bg: #0f0f0f;
  --light-text: #ffffff;
}

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

.font-inter {
  font-family: 'Inter', sans-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;
  }

  #main-content.show {
    display: block !important;
    opacity: 1;
  }
  
  .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;
  }

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.float-slow { animation: float 6s ease-in-out infinite; }
.float-medium { animation: float 4s ease-in-out infinite; }
.float-fast { animation: float 3s ease-in-out infinite; }
.pulse-ring { animation: pulse 2s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.8s ease-out; }
.slide-in-left { animation: slideInLeft 0.8s ease-out; }
.slide-in-right { animation: slideInRight 0.8s ease-out; }

/* Cards */
.luxury-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border: 1px solid #333;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  transition: left 0.5s;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
}

.hero-text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f59e0b 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
/* .header-main {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
} */

/* .page-link {
  position: relative;
  transition: all 0.3s ease;
}

.page-link:hover {
  color: #f59e0b !important;
} */

/* .bg-accent-orange {
  background-color: #f59e0b;
  color: #000;
  padding: 8px 16px;
  border-radius: 25px;
} */

/* Stats counter animation */
.stats-number {
  font-size: 3rem;
  font-weight: bold;
  color: #f59e0b;
}

@media (max-width: 768px) {
  .stats-number {
    font-size: 2rem;
  }
}

/* Floating icons */
.floating-icon {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(odd) {
  animation-delay: -2s;
}

/* Waves */
.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

/* ROI Badge */
.roi-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50px;
  padding: 15px 30px;
  color: black;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.roi-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: rotate(45deg);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}