/**
 * RENTCOMPH — Global Stylesheet
 * Shared styles used across all pages of the system.
 */

/* ============================================
   UTILITY OVERRIDES
   ============================================ */
[x-cloak] {
  display: none !important;
}

/* ============================================
   GRADIENTS
   ============================================ */
.gradient-hero {
  background: linear-gradient(135deg, #0d2618 0%, #266a42 50%, #3da364 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #1e452f 0%, #266a42 50%, #d3740f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   GLASS / FROSTED EFFECT
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   CARD INTERACTIONS
   ============================================ */
.feature-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 133, 80, 0.12);
}

.stat-card {
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: scale(1.03);
}

.benefit-card {
  transition: all 0.3s ease;
}
.benefit-card:hover {
  box-shadow: 0 16px 48px rgba(45, 133, 80, 0.10);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
.float-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.5; }
  80%, 100% { transform: scale(2); opacity: 0; }
}
.pulse-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(61, 163, 100, 0.4);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
