/* Gazana.AI - Shared Styles */

/* Hero backgrounds */
.hero-bg {
  background: radial-gradient(800px 400px at 85% 10%, rgba(212,175,55,0.20), transparent 60%),
              linear-gradient(180deg, #0f241a 0%, #173626 40%, #1C4630 100%);
}

.hero-bg-alt {
  background: linear-gradient(135deg, #0f241a 0%, #1C4630 50%, #173626 100%);
}

.hero-bg-light {
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

/* Glass effect */
.card-glass {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.75);
}

.card-glass-dark {
  backdrop-filter: blur(8px);
  background: rgba(28, 70, 48, 0.85);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #D4AF37 0%, #F0D78C 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat cards */
.stat-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Feature cards hover */
.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 70, 48, 0.15);
}

/* CTA button hover effects */
.btn-primary {
  background: #D4AF37;
  color: #1C4630;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #e5c554;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: #1C4630;
  color: white;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #245a3d;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Navigation active state */
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Timeline styling */
.timeline-item {
  position: relative;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #D4AF37;
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% - 0.5rem);
  background: rgba(212, 175, 55, 0.3);
}

.timeline-item:last-child::after {
  display: none;
}

/* Quote styling */
.quote-card {
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid #D4AF37;
}

/* Animated gradient border */
.gradient-border {
  position: relative;
  background: white;
  border-radius: 1rem;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #D4AF37, #1C4630, #D4AF37);
  border-radius: 1.1rem;
  z-index: -1;
}

/* Section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 70, 48, 0.2), transparent);
}

/* Keyword tags */
.keyword-tag {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  background: rgba(28, 70, 48, 0.1);
  color: #1C4630;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Mobile menu */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu.active {
    display: block;
  }
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Stagger delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}
