/* Custom CSS for PT. Yeka Agri Bisnis */

:root {
    --bs-primary: #22c55e;
    --bs-primary-rgb: 34, 197, 94;
    --bs-primary-dark: #16a34a;
  }
  
  /* Override Bootstrap primary color */
  .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
  }
  
  .btn-primary:hover,
  .btn-primary:focus {
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
  }
  
  .btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
  }
  
  .btn-outline-primary:hover,
  .btn-outline-primary:focus {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
  }
  
  .text-primary {
    color: var(--bs-primary) !important;
  }
  
  /* Hero section background pattern */
  .hero-section {
    background-color: #f0f8f0;
    background-image: 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='%2322c55e' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  
  /* Logo circle */
  .logo-circle {
    width: 40px;
    height: 40px;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  /* Feature icons */
  .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(34, 197, 94, 0.1);
  }
  
  .feature-icon i {
    font-size: 1.75rem;
  }
  
  /* Grayscale effect for partner logos */
  .grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .hover-color:hover {
    filter: grayscale(0%);
  }
  
  /* WhatsApp button */
  .whatsapp-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .whatsapp-button:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.05);
  }
  
  /* Hover effect for footer links */
  .hover-white:hover {
    color: white !important;
  }
  
  /* Spacing utilities */
  .py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  /* Rounded corners */
  .rounded-4 {
    border-radius: 0.5rem;
  }
  
  /* Background opacity utilities */
  .bg-opacity-10 {
    --bs-bg-opacity: 0.1;
  }
  
  /* Custom card styling */
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .display-4 {
      font-size: 2.5rem;
    }
  
    .display-5 {
      font-size: 2rem;
    }
  }
  
  /* Background color for feature icons */
  .bg-primary-light {
    background-color: rgba(34, 197, 94, 0.1);
  }
  
  /* Fix for gap utility in some browsers */
  .gap-3 {
    gap: 1rem;
  }
  
  