/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(218,165,32,0.8);
  border-radius: 25px;
  position: relative;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.scroll-icon span {
  width: 4px;
  height: 10px;
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
  border-radius: 2px;
  display: block;
  animation: scrollAnimation 2s infinite;
}

.scroll-icon span:nth-child(1) {
  animation-delay: 0s;
}

.scroll-icon span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-icon span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollAnimation {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

.scroll-indicator p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Quick Navigation */
.quick-nav {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-nav.visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-nav-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
  margin: 0 0 3rem;
  color: var(--text);
  font-weight: 700;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-nav-item {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.quick-nav-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(218,165,32,0.25);
  border-color: #DAA520;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.quick-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #DAA520, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quick-nav-item:hover::before {
  opacity: 1;
}

.quick-nav-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quick-nav-item:hover .quick-nav-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(218,165,32,0.4);
}

.quick-nav-icon svg {
  color: white;
  transition: all 0.3s ease;
}

.quick-nav-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s ease;
}

.quick-nav-item:hover h3 {
  color: #DAA520;
}

.quick-nav-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.quick-nav-item:hover p {
  color: var(--text);
}

/* Mobile responsive for quick nav */
@media (max-width: 768px) {
  /* Hide scroll indicator completely on mobile - remove it entirely */
  .scroll-indicator {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -9999 !important;
  }
  
  .quick-nav {
    padding: 60px 0;
  }
  
  .quick-nav-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .quick-nav-item {
    padding: 2rem 1.5rem;
  }
  
  .quick-nav-icon {
    width: 60px;
    height: 60px;
  }
  
  .quick-nav-icon svg {
    width: 36px;
    height: 36px;
  }
}
