
:root {
  --primary-color: #5c7a34;    /* Nav green */
  --accent-color: #a7cda3;     /* Light mint */
  --bg-gradient: linear-gradient(135deg, rgba(92,122,52,0.1), rgba(167,205,163,0.1));
  --card-bg: #ffffff;
}
/* Hero styling remains same */
.hero-section.primary-bg-clr { background: var(--primary-color) !important; }
.hero-section .display-3 { font-size: 2rem !important; }
@media (min-width: 576px) { .hero-section .display-3 { font-size: 2.5rem !important; } }

/* Pricing Cards Section */
.pricing-section { background: var(--bg-gradient); padding: 3rem 0; }
.pricing-section .container { max-width: 1200px; }
.pricing-section .row g-4 { margin: 0 -0.5rem; }
.pricing-section .col-12 { padding: 0 0.5rem; }
.pricing-section .card {
  position: relative;
  background: var(--card-bg);
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-section .card:hover {
  transform: translateY(-0.5rem) scale(1.02);
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.15);
}
.pricing-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -60px;
  width: 160px;
  height: 210%;
  background: var(--accent-color);
  transform: skewX(-25deg);
  z-index: 0;
}
.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: bold;
  clip-path: polygon(0 0,100% 0,100% 100%,15% 100%,0 85%);
  z-index: 2;
}
.ribbona {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-color);
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0.5rem;
  z-index: 2;
}



@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ff4d4d; /* Light red */
  color: #ffffff; /* White text */
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0.5rem;
  z-index: 2;
  animation: blink 1s infinite;
}


.card-body { position: relative; z-index: 1; }
.card-title { font-size: 1.25rem; margin-bottom: 1rem; }
.text-strike { text-decoration: line-through; color: #888; }
.card-price { font-size: 2rem; font-weight: bold; color: var(--primary-color); margin-bottom: 1rem; }
.btn-primary {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: auto;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  transition: background 0.3s;
}
.btn-primary:hover { background: #4e6930; }
