/* Branch Hero Section - Scoped Styles */
  .bh-section {
    position: relative;
    padding: 6rem 0;
    background-image: linear-gradient(rgba(3, 12, 48, 0.7), rgba(3, 14, 58, 0.7)), url('/public/images/makima.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
  }

  .bh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 12, 48, 0.4);
  }

  .bh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .bh-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
  }

  .bh-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .bh-badge i {
    margin-right: 0.5rem;
    font-size: 1rem;
  }

  .bh-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .bh-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .bh-quick-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .bh-info-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
  }

  .bh-info-item i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
  }

  .bh-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .bh-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .bh-primary {
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.9), rgba(0, 210, 255, 0.9));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .bh-primary:hover {
    background: linear-gradient(135deg, rgba(58, 123, 213, 1), rgba(0, 210, 255, 1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .bh-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
  }

  .bh-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Animation */
  .bh-fade-in {
    animation: bhFadeIn 1s ease-out;
  }

  @keyframes bhFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .bh-section {
      padding: 4rem 0;
    }
    
    .bh-title {
      font-size: 1.8rem;
    }
    
    .bh-subtitle {
      font-size: 1rem;
    }
    
    .bh-quick-info {
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
    }
    
    .bh-cta-buttons {
      flex-direction: column;
      gap: 0.8rem;
    }
    
    .bh-btn {
      width: 100%;
      text-align: center;
    }
  }