body {
    font-family: 'Quicksand', sans-serif;
    background: #fefefe url('https://www.transparenttextures.com/patterns/green-dust-and-scratches.png');
    background-size: cover;
    color: #2e7d32;
  }
  
  .nav-tabs .nav-link.active {
    background-color: #66bb6a !important;
    color: white !important;
    font-weight: bold;
    border-radius: 0.375rem;
  }
  
  .tab-pane {
    animation: fadeTab 0.4s ease-in-out;
  }
  
  @keyframes fadeTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .cart-area {
    border: 1px solid #a5d6a7;
    background: #ffffff;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #e8f5e9;
    border-left: 4px solid #66bb6a;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
  }
  
  .cart-item:hover {
    background-color: #dcedc8;
  }
  
  .checkout-area {
    margin-top: 2rem;
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  }
  
  .btn-success {
    background-color: #43a047;
    border-color: #43a047;
  }
  
  .btn-success:hover {
    background-color: #2e7d32;
  }
  
  .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-size: 24px;
    z-index: 1000;
    transition: background 0.3s ease;
  }
  
  .floating-whatsapp:hover {
    background: #128C7E;
  }
  

/* Clean white card container for booking area */
.pricing-card-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}

.pricing-card-wrapper h2,
.pricing-card-wrapper label,
.pricing-card-wrapper select,
.pricing-card-wrapper input,
.pricing-card-wrapper p {
  color: #333;
}
