/* ===== CUSTOM STYLES ===== */

/* Gold button */
.gold-btn {
  background: linear-gradient(135deg, #d4a853 0%, #b8860b 100%);
  color: #0a1f0f;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.gold-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8c06a 0%, #d4a853 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.3), 0 4px 12px rgba(212, 168, 83, 0.15);
}

.gold-btn:hover::before {
  opacity: 1;
}

.gold-btn span,
.gold-btn svg,
.gold-btn > * {
  position: relative;
  z-index: 1;
}

/* Stat cards */
.stat-card {
  background: rgba(13, 40, 24, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 20px;
  padding: 20px 24px;
  width: 180px;
  animation: floatCard 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card.card-1 { animation-delay: 0s; }
.stat-card.card-2 { animation-delay: -2s; }
.stat-card.card-3 { animation-delay: -4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Feature cards */
.feature-card {
  background: rgba(13, 40, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 168, 83, 0.1);
}

/* Testimonial cards */
.testimonial-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Scroll indicator line */
.scroll-line {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #d4a853);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* Navbar glass effect */
.nav-scrolled {
  background: rgba(10, 31, 15, 0.92) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile menu */
.mobile-link {
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: #d4a853 !important;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: rgba(212, 168, 83, 0.3);
  color: #faf9f6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a1f0f;
}

::-webkit-scrollbar-thumb {
  background: #1a4a2e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #225c38;
}

/* Fade-in for images */
img {
  opacity: 0;
  transition: opacity 0.6s ease;
}

img.loaded {
  opacity: 1;
}

/* Input date icon color fix */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(100deg);
  cursor: pointer;
}

/* Mobile menu animation */
#mobile-menu.open {
  opacity: 1 !important;
  pointer-events: all !important;
}

#mobile-menu.closed {
  opacity: 0 !important;
  pointer-events: none !important;
}
