body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  color: #2d4a2f
}

.hero-gradient {
  background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 50%, #68a85f 100%);
  position: relative;
  overflow: hidden;
  min-height: 85vh
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: 1
}

.hero-gradient .container {
  position: relative;
  z-index: 2;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.8rem !important
}

.beta7-content-component {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.card {
  border-radius: 20px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.4s ease
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(45, 90, 61, 0.15)
}

.btn {
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden
}

.btn::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:hover::before {
  left: 100%
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2)
}

.bg-success {
  background-color: #2d5a3d !important;
}

.bg-gradient-success {
  background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%) !important
}

.text-success {
  color: #2d5a3d !important;
}

.btn-success {
  background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
  border: none;
  color: white
}

.btn-success:hover {
  background: linear-gradient(135deg, #1e3d28 0%, #336642 100%);
  border: none
}

.btn-outline-success {
  border: 2px solid #2d5a3d;
  color: #2d5a3d;
  background: transparent
}

.btn-outline-success:hover {
  background: #2d5a3d;
  color: white;
  border-color: #2d5a3d
}

.bg-warning {
  background-color: #f4a261 !important
}

.text-warning {
  color: #f4a261 !important;
}

.bg-info {
  background-color: #2a9d8f !important
}

.text-info {
  color: #2a9d8f !important
}

.bg-danger {
  background-color: #e76f51 !important;
}

.hero-contact-natural {
  background: linear-gradient(135deg, #2d5a3d 0%, #2a9d8f 50%, #4a7c59 100%);
  min-height: 60vh;
  position: relative
}

.beta7-input-field {
  border-radius: 15px;
  border: 2px solid #e9ecef;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff
}

.beta7-input-field:focus {
  border-color: #2d5a3d;
  box-shadow: 0 0 0 0.3rem rgba(45, 90, 61, 0.25);
  background: #f8fff9
}


.contact-detail {
  display: flex;
  align-items-flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(45, 90, 61, 0.1)
}

.contact-detail:last-child {
  border-bottom: none
}

.stats-card {
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.herb-cookie-banner {
  backdrop-filter: blur(15px);
  animation: slideUpHerb 0.6s ease-out
}

@keyframes slideUpHerb {
  from {
    transform: translateY(100%);
    opacity: 0
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.botanical-cookie-notice {
  backdrop-filter: blur(12px);
  background: rgba(33, 37, 41, 0.95) !important
}

.min-vh-75 {
  min-height: 75vh
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%) !important
}

.bg-gradient-info {
  background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%) !important;
}

.bg-gradient-danger {
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%) !important
}

section {
  padding: 80px 0
}

.rounded-4 {
  border-radius: 25px !important
}

.shadow-lg {
  box-shadow: 0 25px 50px rgba(45, 90, 61, 0.15) !important
}

footer {
  border-top: 4px solid #2d5a3d
}

footer a:hover {
  color: #4a7c59 !important;
  text-decoration: underline !important
}

.bg-opacity-20 {
  background-color: rgba(var(--bs-bg-opacity-rgb), 0.2) !important
}

@media (max-width: 768px) {
  .hero-gradient {
    min-height: 70vh;
    text-align: center
  }
  
  .display-3 {
    font-size: 2.5rem
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .card {
    margin-bottom: 2rem
  }
  
  section {
    padding: 60px 0
  }
  
  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem
  }
  
  .stats-card {
    margin-bottom: 1rem
  }
}

@media (max-width: 576px) {
  .hero-gradient {
    padding: 40px 0;
    min-height: 60vh
  }
  
  .display-3 {
    font-size: 2rem
  }
  
  .navbar-brand {
    font-size: 1.5rem !important
  }
  
  .beta7-content-component .container {
    padding-left: 15px;
    padding-right: 15px
  }
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #212529 0%, #495057 100%) !important
}

.pointer-events-none {
  pointer-events: none !important
}

.was-validated .form-control:invalid {
  border-color: #e76f51
}

.was-validated .form-control:valid {
  border-color: #2d5a3d;
}

.invalid-feedback {
  font-size: 0.9rem;
  color: #e76f51
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important
}

.border-success {
  border-color: #2d5a3d !important
}

.border-warning {
  border-color: #f4a261 !important;
}

.border-info {
  border-color: #2a9d8f !important
}

.border-3 {
  border-width: 3px !important
}

.border-2 {
  border-width: 2px !important;
}

.custom-herb-animation {
  animation: floatHerb 6s ease-in-out infinite
}

@keyframes floatHerb {
  0%, 100% {
    transform: translateY(0px) rotate(0deg)
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.deprecated-herb-style {
  background-color: #old-green;
  font-family: 'Times New Roman'
}

.testHerbClass {
  background: yellow;
  font-size: 16px
}

.unused-botanical-element {
  display: none;
  color: purple
}

.mixed_naming_convention {
  font-weight: bold
}

.camelCaseNaming {
  font-style: italic;
}

.kebab-case-naming {
  text-decoration: underline
}