body {
  background-color: #050505;
  color: #ffffff;
}

.glass-header {
  background: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-red {
  background: linear-gradient(180deg, #d32020 0%, #991b1b 100%);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border-top: 1px solid #e14b4b;
}

.btn-red:hover {
  background: linear-gradient(180deg, #e52929 0%, #b91c1c 100%);
  box-shadow: 0 0 20px rgba(185, 28, 28, 0.6);
}

.gold-gradient-text {
  background: linear-gradient(180deg, #f9e29a 0%, #c49926 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-link {
  color: #aaaaaa;
  transition: color 0.3s;
  font-size: 11px;
}

.nav-link:hover,
.nav-link.active {
  color: #d4af37;
}

.service-banner {
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.85) 0%, rgba(130, 15, 15, 0.95) 100%);
  border-top: 1px solid rgba(255, 100, 100, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}

.icon-gold {
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.text-glow {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gold-line-h {
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 1) 50%, rgba(212, 175, 55, 0) 100%);
}

.wave-separator {
  position: relative;
  width: 100%;
  height: 60px;
  background: #050505;
  overflow: hidden;
  z-index: 20;
}

.wave-separator::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -100%;
  left: -50%;
  background: transparent;
  border-bottom: 5px solid #b91c1c;
  border-radius: 50%;
  /* Removed heavy box-shadows for Chrome performance */
}

.wave-separator::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -105%;
  left: -48%;
  background: transparent;
  border-bottom: 2px solid #d4af37;
  border-radius: 50%;
  /* Removed filter:blur(1px); for Chrome performance */
}

.wave-top::before {
  top: 0;
  border-bottom: none;
  border-top: 5px solid #b91c1c;
  /* Removed heavy box-shadows for Chrome performance */
}

.wave-top::after {
  top: -5%;
  border-bottom: none;
  border-top: 2px solid #d4af37;
}

.input-premium {
  background: transparent;
  border: 1px solid #333;
  color: white;
  transition: all 0.3s ease;
}

.input-premium:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.1);
}

#mobile-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

#mobile-menu.open {
  transform: translateX(0) !important;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  /* transition: opacity 0.8s ease-out, transform 0.8s ease-out; */
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.filter-btn {
  color: #d4af37;
  transition: color 0.3s;
  padding: 10px 15px;
  font-weight: bold;
}

.filter-btn.active {
  color: white;
  background: #991b1b;
}

.portfolio-item {
  position: relative;
  border: 1px solid #222;
}

.portfolio-label {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0) 100%);
  text-shadow: 1px 1px 3px #000;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  .wave-separator {
    height: 30px;
  }
}

/* Mobile Optimizations */
@media (max-width: 640px) {
  .py-32 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-24 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-20 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-16 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .mb-20 {
    margin-bottom: 3rem !important;
  }

  .mb-16 {
    margin-bottom: 2.5rem !important;
  }

  .mb-12 {
    margin-bottom: 2rem !important;
  }

  .mt-12 {
    margin-top: 2rem !important;
  }

  .mt-16 {
    margin-top: 2.5rem !important;
  }

  h1 {
    font-size: 2.25rem !important;
    /* 36px */
    line-height: 1 !important;
  }

  .gold-gradient-text {
    line-height: 1.1;
  }

  h2 {
    font-size: 1.875rem !important;
    /* 30px */
  }

  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  #mobile-menu {
    padding-top: 6rem;
  }

  .glass-header img {
    height: 48px !important;
  }
}

/* Extra Small Devices (iPhone SE, etc.) */
@media (max-width: 360px) {
  h1 {
    font-size: 2rem !important;
  }

  .font-bebas {
    letter-spacing: 0.1em !important;
  }

  .glass-header img {
    height: 40px !important;
  }
}

/* Smooth Scrolling Fix */
html {
  /* Removed scroll-behavior: smooth; to fix desktop trackpad/mouse scroll jank */
}

/* Prevent horizontal scroll from animations */
/* Removed body overflow constraints to fix Chrome scroll jitter */

/* Reviews Slider Styles */
#reviews-track {
  display: flex;
  will-change: transform;
}

#reviews-slider {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

#reviews-dots button {
  outline: none;
  cursor: pointer;
}

/* Glassmorphism for cards */
.bg-xgi-dark {
  background: rgba(10, 10, 10, 0.98);
}
.opacity-7 { opacity: 0.07; }
.group:hover .group-hover\:opacity-15 { opacity: 0.15; }

