/* ============================================
   LANDING PAGE ENHANCEMENTS
   Beautiful shadcn-inspired landing page
   ============================================ */

/* Enhanced Navbar with Glass Effect */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Enhanced Logo */
.logo {
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.1);
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

/* Enhanced Nav Links */
.nav-links a {
  position: relative;
  color: #52525B;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #16A34A 0%, #22C55E 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #16A34A;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Enhanced Hero Section */
.hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(22, 163, 74, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Enhanced Badge */
.badge {
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.9) 0%, rgba(187, 247, 208, 0.9) 100%);
  color: #15803D;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: 1px solid rgba(22, 163, 74, 0.2);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.15);
  animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Hero Title */
.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: #09090B;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Removed gradient effect that was making "Property" look unusual */

/* Enhanced Hero Description */
.hero-description {
  font-size: 19px;
  line-height: 1.7;
  color: #52525B;
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Enhanced Buttons */
.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.3);
  animation: fadeInUp 0.6s ease-out 0.3s both;
  position: relative;
  overflow: hidden;
}

.btn-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-large:hover::before {
  left: 100%;
}

.btn-large:hover {
  box-shadow: 0 6px 20px 0 rgba(22, 163, 74, 0.4);
  transform: translateY(-2px);
}

.btn-large:active {
  transform: translateY(0);
}

/* Enhanced Hero Image */
.hero-image {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  position: relative;
  max-width: 100%;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  background: white;
  object-fit: contain;
}

.hero-image img:hover {
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25), 
              0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px) scale(1.01);
}

/* Enhanced Feature Cards */
.feature-card {
  background: white;
  border: 1px solid #E4E4E7;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #16A34A 0%, #22C55E 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-color: #D4D4D8;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #09090B;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: #52525B;
  font-weight: 500;
  line-height: 1.6;
  font-size: 15px;
}

/* Enhanced Stats Section */
.stats-item {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stats-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.stats-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.stats-label {
  color: #52525B;
  font-weight: 600;
  font-size: 15px;
}

/* Enhanced Pricing Cards - Removed background override to show green */
.pricing-card {
  /* background: removed - keep green from main CSS */
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 20px 40px -15px rgba(22, 163, 74, 0.3);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 50%, #DCFCE7 100%);
  border-color: #22C55E;
  box-shadow: 0 10px 30px -10px rgba(22, 163, 74, 0.3);
}

.pricing-card.featured::before {
  content: '✨ POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #16A34A;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: white;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}

.btn-secondary {
  background: white;
  color: #16A34A;
  border: 2px solid white;
  font-weight: 700;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

/* Enhanced Footer */
.footer {
  background: #09090B;
  color: #A1A1AA;
  border-top: 1px solid #27272A;
}

.footer-links a {
  color: #A1A1AA;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #22C55E;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Testimonials */
.testimonial-card {
  background: white;
  border: 1px solid #E4E4E7;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-color: #D4D4D8;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #3F3F46;
  font-weight: 500;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #09090B;
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 14px;
  color: #71717A;
  font-weight: 500;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }
  
  .hero-description {
    font-size: 17px;
  }
  
  .pricing-amount {
    font-size: 40px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
}

/* Smooth Page Load */
body {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

